summaryrefslogtreecommitdiff
path: root/src/debug/ee/debugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/ee/debugger.h')
-rw-r--r--src/debug/ee/debugger.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debug/ee/debugger.h b/src/debug/ee/debugger.h
index 6f71b5c74a..25c1ad5dd6 100644
--- a/src/debug/ee/debugger.h
+++ b/src/debug/ee/debugger.h
@@ -3380,7 +3380,7 @@ inline void * __cdecl operator new[](size_t n, const InteropSafe&)
return result;
}
-inline void * __cdecl operator new(size_t n, const InteropSafe&, const NoThrow&)
+inline void * __cdecl operator new(size_t n, const InteropSafe&, const NoThrow&) throw()
{
CONTRACTL
{
@@ -3399,7 +3399,7 @@ inline void * __cdecl operator new(size_t n, const InteropSafe&, const NoThrow&)
return result;
}
-inline void * __cdecl operator new[](size_t n, const InteropSafe&, const NoThrow&)
+inline void * __cdecl operator new[](size_t n, const InteropSafe&, const NoThrow&) throw()
{
CONTRACTL
{
@@ -3505,7 +3505,7 @@ inline void * __cdecl operator new(size_t n, const InteropSafeExecutable&)
return result;
}
-inline void * __cdecl operator new(size_t n, const InteropSafeExecutable&, const NoThrow&)
+inline void * __cdecl operator new(size_t n, const InteropSafeExecutable&, const NoThrow&) throw()
{
CONTRACTL
{