diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-09-25 11:50:06 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-09-25 11:50:56 +0300 |
commit | eebc9748d2ea26a7b5af246dba115103d6bb15db (patch) | |
tree | 271ac2dda2d10f97eed8c66a326c712c06b12560 /basic | |
parent | 7ea71eb8a28c4b41949299ff7d4b391486c90eea (diff) |
Fix MSVC build: #undef EXPLICIT (which gets defined as 'explicit' somewhere)
Change-Id: I83f6dff2a01d6d7806b2d2f4e6415aee10933e14
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/inc/token.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/basic/source/inc/token.hxx b/basic/source/inc/token.hxx index 7890ef3d7fde..5054bd9a440d 100644 --- a/basic/source/inc/token.hxx +++ b/basic/source/inc/token.hxx @@ -28,6 +28,10 @@ #undef SHARED #endif +#if defined( EXPLICIT ) +#undef EXPLICIT +#endif + // The tokenizer is stand-alone, i. e. he can be used from everywhere. // A BASIC-instance is necessary for error messages. Without BASIC the // errors are only counted. The BASIC is also necessary when an advanced |