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
11 changed files with 49 additions and 0 deletions

View File

@@ -95,3 +95,7 @@ public:
NodePath() {}
~NodePath();
};
// Zero-constructing NodePath initializes data to nullptr (and thus empty).
template <>
struct is_zero_constructible<NodePath> : std::true_type {};