File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
#include < algorithm>
2
2
#include < cstddef>
3
3
#include < iterator>
4
+ #include < memory>
4
5
#include < utility>
5
6
#include < gtest/gtest.h>
6
7
#include < entt/core/hashed_string.hpp>
@@ -70,12 +71,18 @@ enum class enum_class : unsigned short int {
70
71
};
71
72
72
73
struct unmanageable_t {
73
- unmanageable_t () = default ;
74
+ unmanageable_t ()
75
+ : value{std::make_unique<int >(42 )} {}
76
+
74
77
~unmanageable_t () = default ;
78
+
75
79
unmanageable_t (const unmanageable_t &) = delete ;
76
80
unmanageable_t (unmanageable_t &&) = delete ;
81
+
77
82
unmanageable_t &operator =(const unmanageable_t &) = delete ;
78
83
unmanageable_t &operator =(unmanageable_t &&) = delete ;
84
+
85
+ std::unique_ptr<int > value;
79
86
};
80
87
81
88
struct MetaAny : ::testing::Test {
@@ -1303,7 +1310,7 @@ TEST_F(MetaAny, EnumConversion) {
1303
1310
}
1304
1311
1305
1312
TEST_F (MetaAny, UnmanageableType) {
1306
- unmanageable_t instance;
1313
+ unmanageable_t instance{} ;
1307
1314
auto any = entt::forward_as_meta (instance);
1308
1315
entt::meta_any other = any.as_ref ();
1309
1316
You can’t perform that action at this time.
0 commit comments