diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 10:52:33 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 10:52:33 +0900 |
commit | 0efe600d6f0659af7bae9047301dd60983e18a6e (patch) | |
tree | 50131a4bf60e38149cccd2a84086c675b8533e9d /src/constexp.l | |
parent | b3e03c958bd4534210bdb8d87ab0b56ada4562fb (diff) | |
download | doxygen-0efe600d6f0659af7bae9047301dd60983e18a6e.tar.gz doxygen-0efe600d6f0659af7bae9047301dd60983e18a6e.tar.bz2 doxygen-0efe600d6f0659af7bae9047301dd60983e18a6e.zip |
Imported Upstream version 1.8.10upstream/1.8.10
Diffstat (limited to 'src/constexp.l')
-rw-r--r-- | src/constexp.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/constexp.l b/src/constexp.l index bb4f842..e3ff3f1 100644 --- a/src/constexp.l +++ b/src/constexp.l @@ -3,7 +3,7 @@ * * * - * Copyright (C) 1997-2014 by Dimitri van Heesch. + * Copyright (C) 1997-2015 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby @@ -15,7 +15,7 @@ * input used in their production; they are not affected by this license. * */ - +%option never-interactive %{ #include "constexp.h" @@ -23,8 +23,8 @@ #include "ce_parse.h" // generated header file #include "message.h" -#define YY_NEVER_INTERACTIVE 1 #define YY_NO_INPUT 1 +#define YY_NO_UNISTD_H 1 QCString g_strToken; CPPValue g_resultValue; |