mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
add const qualifiers to fix warning messages
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1496333e5b
commit
4ad6660f35
|
@ -107,7 +107,7 @@ struct pTreeNode {
|
||||||
pTree children[MAX_CHILDREN+1];
|
pTree children[MAX_CHILDREN+1];
|
||||||
};
|
};
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
int yyerror( char *s ) {
|
int yyerror( char const *s ) {
|
||||||
|
|
||||||
fprintf( stderr, "%s in line %d at item \"%s\".\n", s, yylineno, yytext);
|
fprintf( stderr, "%s in line %d at item \"%s\".\n", s, yylineno, yytext);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue