0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
[occt.git] / src / NCollection / NCollection_WinHeapAllocator.hxx
index 7fdff03..625617e 100644 (file)
@@ -42,10 +42,10 @@ public:
   Standard_EXPORT virtual ~NCollection_WinHeapAllocator();
 
   //! Allocate memory
-  Standard_EXPORT virtual void* Allocate (const Standard_Size theSize);
+  Standard_EXPORT virtual void* Allocate (const Standard_Size theSize) Standard_OVERRIDE;
 
   //! Release memory
-  Standard_EXPORT virtual void  Free (void* theAddress);
+  Standard_EXPORT virtual void  Free (void* theAddress) Standard_OVERRIDE;
 
   // Declaration of CASCADE RTTI
   DEFINE_STANDARD_RTTI(NCollection_WinHeapAllocator, NCollection_BaseAllocator)