Core: Expand is_zero_constructible coverage

This commit is contained in:
Thaddeus Crews 2025-03-15 11:09:01 -05:00
parent 9e6ee9c5c3
commit 4320800621
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84
11 changed files with 49 additions and 0 deletions

View file

@ -58,3 +58,6 @@ public:
_ALWAYS_INLINE_ explicit ObjectID(const uint64_t p_id) { id = p_id; }
_ALWAYS_INLINE_ explicit ObjectID(const int64_t p_id) { id = p_id; }
};
template <>
struct is_zero_constructible<ObjectID> : std::true_type {};