Kim Kulling 3 years ago
parent
commit
3af53a42aa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      code/Common/Maybe.h

+ 2 - 2
code/Common/Maybe.h

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