diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-01-19 00:35:04 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-01-19 00:35:04 -0500 |
commit | 0fedbe9d9d17745ff3d78753bafbd70cfc95b529 (patch) | |
tree | 5d4792e728a548c2b7b09c8ee8b91646a0166b4e /dimension | |
parent | 01775fe7c989415269bb8da1e63ddbf4874f3d50 (diff) | |
download | dimension-0fedbe9d9d17745ff3d78753bafbd70cfc95b529.tar.xz |
Silence some compiler warnings in flex-generated code.
Diffstat (limited to 'dimension')
-rw-r--r-- | dimension/lexer.l | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dimension/lexer.l b/dimension/lexer.l index 2c75a41..776dd32 100644 --- a/dimension/lexer.l +++ b/dimension/lexer.l @@ -100,6 +100,11 @@ int token; size_t string_length = 0, string_extent = 8; unsigned long wchar; + +/* Silence some warnings */ +(void)yyunput; +(void)input; +(void)yy_top_state; %} (?# Comments) |