浏览代码

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 年之前
父节点
当前提交
bb9b583bcf
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
     }