pull/4715/head
Kim Kulling 2022-09-08 19:06:05 +02:00 committed by GitHub
parent fff977c0b5
commit 3af53a42aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -82,8 +82,8 @@ struct Maybe {
Maybe(const Maybe &) = delete; Maybe(const Maybe &) = delete;
private: private:
T _val = false; T _val;
bool _valid; bool _valid = false;
}; };
} // namespace Assimp } // namespace Assimp