Fix review findings.

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

View File

@ -49,7 +49,7 @@ namespace Assimp {
template <typename T>
struct Maybe {
/// @brief
Maybe() : _valid(false) {}
Maybe() = default;
/// @brief
/// @param val
@ -82,7 +82,7 @@ struct Maybe {
Maybe(const Maybe &) = delete;
private:
T _val;
T _val = false;
bool _valid;
};