Parcourir la source

Fix: the member function 'Flush()' of class 'MemoryIOStream' need to be marked as override for msvc clang compiling

jiannanya il y a 2 ans
Parent
commit
2390822baf
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      include/assimp/MemoryIOWrapper.h

+ 1 - 1
include/assimp/MemoryIOWrapper.h

@@ -125,7 +125,7 @@ public:
         return length;
     }
 
-    void Flush() {
+    void Flush() override{
         ai_assert(false); // won't be needed
     }