Browse Source

Merge pull request #4945 from jiannanya/MemoryIOStream-override-mark

the member 'Flush()' need to be marked as override for msvc clang compiling
Kim Kulling 2 years ago
parent
commit
bb9b583bcf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/assimp/MemoryIOWrapper.h

+ 1 - 1
include/assimp/MemoryIOWrapper.h

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