diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-16 16:35:57 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-21 11:31:55 -0700 |
commit | 465e03ee07b778ed4edc24a810b9795409bcdbf9 (patch) | |
tree | 53e91130694b93b088cce52ffe43bcdd7ee167c8 /glcpp/glcpp-lex.l | |
parent | f70f60739a9037102a257396822f0ed81b00cb77 (diff) |
glcpp: Add plumbing to support line locations.
Diffstat (limited to 'glcpp/glcpp-lex.l')
-rw-r--r-- | glcpp/glcpp-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcpp/glcpp-lex.l b/glcpp/glcpp-lex.l index a04e0fabdf..f17336974e 100644 --- a/glcpp/glcpp-lex.l +++ b/glcpp/glcpp-lex.l @@ -29,7 +29,7 @@ #include "glcpp-parse.h" %} -%option bison-bridge reentrant noyywrap +%option bison-bridge bison-locations reentrant noyywrap %option extra-type="glcpp_parser_t *" %option prefix="glcpp_" |