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;
private:
T _val = false;
bool _valid;
T _val;
bool _valid = false;
};
} // namespace Assimp