@@ -5,9 +5,10 @@
#include <entt/meta/resolve.hpp>
struct clazz_t {
+ clazz_t(): value{} {}
void incr() { ++value; }
void decr() { --value; }
- int value{};
+ int value;
};
struct MetaHandle: ::testing::Test {