mirror of https://gitee.com/bigwinds/arangodb
include stdint early
This commit is contained in:
parent
424d349464
commit
fd5ca65f2d
|
@ -1,5 +1,9 @@
|
|||
#line 15 "arangod/Aql/tokens.ll"
|
||||
#include <stdint.h>
|
||||
|
||||
#line 3 "arangod/Aql/tokens.cpp"
|
||||
|
||||
|
||||
#line 7 "arangod/Aql/tokens.cpp"
|
||||
|
||||
#define YY_INT_ALIGNED short int
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
%option reentrant
|
||||
%option 8bit
|
||||
%option prefix="Aql"
|
||||
|
@ -12,6 +11,10 @@
|
|||
%x COMMENT_SINGLE
|
||||
%x COMMENT_MULTI
|
||||
|
||||
%top{
|
||||
#include <stdint.h>
|
||||
}
|
||||
|
||||
%{
|
||||
#include "Basics/Common.h"
|
||||
#include "Basics/conversions.h"
|
||||
|
|
Loading…
Reference in New Issue