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

the member 'Flush()' need to be marked as override for msvc clang compiling
pull/4946/head^2
Kim Kulling 2023-02-13 10:03:51 +01:00 committed by GitHub
commit bb9b583bcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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