summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-23 11:13:03 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-23 11:13:03 +0200
commit73a346d3e94509e00932080bb9c3b385d26627d2 (patch)
treee8825221945f9d9d156ddfa689272a66701b378e /sal
parent83ada47b08e582f45b352a980827a5813bcca3fa (diff)
This is fixed with MSVC 2015
Change-Id: I032b872f75b59904c1c81e8932ad8058ece301b0
Diffstat (limited to 'sal')
-rw-r--r--sal/cpprt/operators_new_delete.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/cpprt/operators_new_delete.cxx b/sal/cpprt/operators_new_delete.cxx
index 6f681e1a92fa..a8d77eb6f19d 100644
--- a/sal/cpprt/operators_new_delete.cxx
+++ b/sal/cpprt/operators_new_delete.cxx
@@ -196,7 +196,7 @@ void* SAL_CALL operator new[] (std::size_t n) throw (std::bad_alloc)
}
void SAL_CALL operator delete[] (void * p)
-#if !defined _MSC_VER
+#if !defined _MSC_VER || _MSC_VER >= 1900
throw ()
#endif
{