diff options
author | Adrian Negreanu <groleo@gmail.com> | 2017-10-24 14:25:19 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-05-04 15:02:02 (GMT) |
commit | 306e3051b1374cf180b1464700ae79662ced95c2 (patch) | |
tree | 6426c16f4ece4d46df254803b05c708f1f0631c0 /src | |
parent | b0e7b7df02ac87acc5dd95549fb189a5d194eff1 (diff) | |
download | Doxygen-306e3051b1374cf180b1464700ae79662ced95c2.zip Doxygen-306e3051b1374cf180b1464700ae79662ced95c2.tar.gz Doxygen-306e3051b1374cf180b1464700ae79662ced95c2.tar.bz2 |
constexp.l: group the flex options
Diffstat (limited to 'src')
-rw-r--r-- | src/constexp.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constexp.l b/src/constexp.l index 8a7db04..aa6c4cc 100644 --- a/src/constexp.l +++ b/src/constexp.l @@ -17,6 +17,7 @@ */ %option never-interactive %option prefix="constexpYY" +%option nounput %{ @@ -54,7 +55,6 @@ static int yyread(char *buf,int max_size) CONSTSUFFIX ([uU][lL]?[lL]?)|([lL][lL]?[uU]?) -%option nounput %% |