diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-07-10 18:08:08 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-07-10 18:08:39 +0200 |
commit | 9a34875667292a768975e2c7aba888efd3597a04 (patch) | |
tree | 5f24a4f4edffccdf442c2f1893b723df09b16e01 /connectivity | |
parent | a1190c9d2e85c4ccb9db106fe9eb4a48219ac126 (diff) |
compatibility with 2008-era bison (2.3)
Undo problematic pollution by sqlbison.hxx
Since with post-2008 (2.4 and later) bison that "#define SQLyylex"\is not active in sqlflex.l, this forces the situation o be the same in all versions of bison, and should notreak anything by itself.
Change-Id: Ie65e3f6cc61dc97adc1d530e3781306ecd176b17
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/parse/sqlflex.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/connectivity/source/parse/sqlflex.l b/connectivity/source/parse/sqlflex.l index 675c1319fbd1..803b63431804 100644 --- a/connectivity/source/parse/sqlflex.l +++ b/connectivity/source/parse/sqlflex.l @@ -38,6 +38,7 @@ #endif #include "sqlbison.hxx" +#undef SQLyylex #endif #include "sqlscan.hxx" #include <osl/diagnose.h> |