0022815: Missing delete operator for placement new
[occt.git] / src / NCollection / NCollection_Queue.hxx
index 2e009c6..c50ae78 100755 (executable)
 #include <Standard_NoSuchObject.hxx>
 #endif
 
-#ifdef WNT
-// Disable the warning "operator new unmatched by delete"
-#pragma warning (disable:4291)
-#endif
-
 /**
  * Purpose:      A queue is  a structure where Items are  added  at
  *               the end  and removed from   the  front. The  first
@@ -135,8 +130,4 @@ template <class TheItemType> class NCollection_Queue
 
 };
 
-#ifdef WNT
-#pragma warning (default:4291)
-#endif
-
 #endif