diff options
author | Marc Laukien <marc@zeroc.com> | 2003-09-14 16:05:00 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-09-14 16:05:00 +0000 |
commit | 407edded1b0ca856058a306768e8591451c5baea (patch) | |
tree | 98a869395dc8d92b13280165158ecdb90a44b56e /cpp/src/Slice/Scanner.l | |
parent | Minor Freeze evictor fixes (diff) | |
download | ice-407edded1b0ca856058a306768e8591451c5baea.tar.bz2 ice-407edded1b0ca856058a306768e8591451c5baea.tar.xz ice-407edded1b0ca856058a306768e8591451c5baea.zip |
flex fixes
Diffstat (limited to 'cpp/src/Slice/Scanner.l')
-rw-r--r-- | cpp/src/Slice/Scanner.l | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Slice/Scanner.l b/cpp/src/Slice/Scanner.l index aecae7775f9..2a0be3d8c5f 100644 --- a/cpp/src/Slice/Scanner.l +++ b/cpp/src/Slice/Scanner.l @@ -21,6 +21,12 @@ #include <stdlib.h> #include <math.h> +#ifdef _WIN32 +// I get these warnings from some flex versions: +// warning C4003: not enough actual parameters for macro 'yywrap' +# pragma warning( disable : 4003 ) +#endif + using namespace std; using namespace Slice; |