diff options
author | Colin Snover | 2017-01-14 10:17:22 -0600 |
---|---|---|
committer | Colin Snover | 2017-01-14 10:17:58 -0600 |
commit | 135ac922aa8e886a6be244f5d52e483e5d7c0599 (patch) | |
tree | 909226880107e6276e6e1aa0bd863ab08a523bac | |
parent | b955b7ba446a2d464529e47c650cd082fdc1629b (diff) | |
download | scummvm-rg350-135ac922aa8e886a6be244f5d52e483e5d7c0599.tar.gz scummvm-rg350-135ac922aa8e886a6be244f5d52e483e5d7c0599.tar.bz2 scummvm-rg350-135ac922aa8e886a6be244f5d52e483e5d7c0599.zip |
COMMON: Define STATIC_ASSERT for all ports
Ports with -DNONSTANDARD_PORT need this too.
-rw-r--r-- | common/scummsys.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 6fd9be81c8..27fcb84505 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -151,7 +151,9 @@ #if !defined(__SYMBIAN32__) #include <new> #endif +#endif +#ifndef STATIC_ASSERT /** * Generates a compile-time assertion. * |