Skip to content

Commit

Permalink
Change first argument of consttree to int to avoid errors
Browse files Browse the repository at this point in the history
for negative enumeration constants.
  • Loading branch information
drh committed Feb 18, 2003
1 parent 8f4f147 commit 84f362c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ extern Tree call(Tree, Type, Coordinate);
extern Tree calltree(Tree, Type, Tree, Symbol);
extern Tree condtree(Tree, Tree, Tree);
extern Tree cnsttree(Type, ...);
extern Tree consttree(unsigned int, Type);
extern Tree consttree(int, Type);
extern Tree eqtree(int, Tree, Tree);
extern int iscallb(Tree);
extern Tree shtree(int, Tree, Tree);
Expand Down

0 comments on commit 84f362c

Please sign in to comment.