Ver código fonte

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 anos atrás
pai
commit
bb9b583bcf
1 arquivos alterados com 1 adições e 1 exclusões
  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
     }