0022815: Missing delete operator for placement new
[occt.git] / src / NCollection / NCollection_List.hxx
index 1a02ed6..c6b38d8 100755 (executable)
 #include <Standard_NoSuchObject.hxx>
 #endif
 
-#ifdef WNT
-// Disable the warning "operator new unmatched by delete"
-#pragma warning (push)
-#pragma warning (disable:4291)
-#endif
-
 /**
  * Purpose:      Simple list to link  items together keeping the first 
  *               and the last one.
@@ -291,8 +285,4 @@ template <class TheItemType> class NCollection_List
   }
 };
 
-#ifdef WNT
-#pragma warning (pop)
-#endif
-
 #endif