diff options
author | 2015-12-09 15:20:48 +0100 | |
---|---|---|
committer | 2015-12-09 15:20:48 +0100 | |
commit | 52612a9fddb0921e5e26bc039f9b6d454952e6f8 (patch) | |
tree | ec34b3b42db05cacde24df351eb9f5adafad7b73 /src/lib/util/corealloc.cpp | |
parent | 791743976e3366e9d3bf8f3b247280bf04c12baf (diff) |
cleanup of osdcomm.h (nw)
Diffstat (limited to 'src/lib/util/corealloc.cpp')
-rw-r--r-- | src/lib/util/corealloc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/util/corealloc.cpp b/src/lib/util/corealloc.cpp index 9ca7af380d3..38f21846f96 100644 --- a/src/lib/util/corealloc.cpp +++ b/src/lib/util/corealloc.cpp @@ -27,6 +27,10 @@ // define this to zap memory to a fixed non-0 value before freeing //#define OVERWRITE_FREED_MEMORY +// compatibility with non-clang compilers +#ifndef __has_feature + #define __has_feature(x) 0 +#endif //************************************************************************** |