forked from jasder/antlr
Possible fix for max_align_t breakage in Travis CI
The Travis CI build is failing after an include of <cstddef> -- This is an attempt to work around that by including <stddef.h> instead. Problem not apparent in my FreeBSD environment.
This commit is contained in:
parent
2d011c8e3a
commit
eb02a05efb
|
@ -5,7 +5,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
#include <stddef.h>
|
||||
|
||||
namespace antlr4 {
|
||||
namespace atn {
|
||||
|
|
Loading…
Reference in New Issue