< prev index next >

hotspot/src/share/vm/memory/allocation.hpp

Print this page

        

@@ -33,10 +33,15 @@
 #endif
 #ifdef COMPILER2
 #include "opto/c2_globals.hpp"
 #endif
 
+#if defined _WINDOWS && _MSC_VER >= 1900
+ // 'noexcept' used with no exception handling mode specified; termination on exception is not guaranteed. Specify /EHsc
+#pragma warning( disable : 4577 )
+#endif
+
 #include <new>
 
 #define ARENA_ALIGN_M1 (((size_t)(ARENA_AMALLOC_ALIGNMENT)) - 1)
 #define ARENA_ALIGN_MASK (~((size_t)ARENA_ALIGN_M1))
 #define ARENA_ALIGN(x) ((((size_t)(x)) + ARENA_ALIGN_M1) & ARENA_ALIGN_MASK)
< prev index next >