Browse Source

no message

Hongtae Kim 6 years ago
parent
commit
9d6280d3f7
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      TestApp1/dkgl_new.cpp

+ 5
- 0
TestApp1/dkgl_new.cpp View File

@@ -33,6 +33,11 @@ void* operator new[](std::size_t size)
33 33
 	return ::operator new(size);
34 34
 }
35 35
 
36
+void* operator new[](size_t size, const std::nothrow_t& tag) noexcept
37
+{
38
+	return ::operator new(size, tag);
39
+}
40
+
36 41
 void operator delete (void* ptr) noexcept
37 42
 {
38 43
 	if (ptr)