This commit is contained in:
Kim Kulling
2022-09-08 19:06:05 +02:00
committed by GitHub
parent fff977c0b5
commit 3af53a42aa

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