1
0
Fork 0

Silence bison warning.

This commit is contained in:
Max Neunhoeffer 2014-06-02 16:25:02 +02:00
parent aed9fe0550
commit 70362d48c2
3 changed files with 228 additions and 228 deletions

File diff suppressed because it is too large Load Diff

View File

@ -105,14 +105,14 @@ extern int Ahuacatldebug;
typedef union YYSTYPE YYSTYPE;
union YYSTYPE
{
#line 26 "arangod/Ahuacatl/ahuacatl-grammar.y" /* yacc.c:1915 */
#line 26 "arangod/Ahuacatl/ahuacatl-grammar.y" /* yacc.c:1909 */
TRI_aql_node_t* node;
char* strval;
bool boolval;
int64_t intval;
#line 116 "arangod/Ahuacatl/ahuacatl-grammar.h" /* yacc.c:1915 */
#line 116 "arangod/Ahuacatl/ahuacatl-grammar.h" /* yacc.c:1909 */
};
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1

View File

@ -1,6 +1,6 @@
%define api.pure
%name-prefix="Ahuacatl"
%name-prefix "Ahuacatl"
%locations
%defines
%parse-param { TRI_aql_context_t* const context }