summaryrefslogtreecommitdiff
path: root/sal/cpprt
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-17 10:03:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-17 11:51:11 +0200
commite59f0a2df15e45c0d7867fa82202e4c57c39833d (patch)
treeef1adbfe010f100189ec486aa266cbbf2244c88c /sal/cpprt
parent10daf844f590017db539c38f5d072a4c15708c74 (diff)
-Werror=unused-macros (MinGW, sal)
Change-Id: I7c0411320798721e70de32580de6adcf5565f12a
Diffstat (limited to 'sal/cpprt')
-rw-r--r--sal/cpprt/operators_new_delete.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/cpprt/operators_new_delete.cxx b/sal/cpprt/operators_new_delete.cxx
index 1943d52c1dad..2b53ffac6119 100644
--- a/sal/cpprt/operators_new_delete.cxx
+++ b/sal/cpprt/operators_new_delete.cxx
@@ -18,10 +18,10 @@
*/
-#ifdef WNT /* avoid 'std::bad_alloc' unresolved externals */
+#ifdef _MSC_VER /* avoid 'std::bad_alloc' unresolved externals */
#define _CRTIMP
#define _NTSDK
-#endif /* WNT */
+#endif
#include <algorithm>
#include <new>