Fix various core types to be trivially constructible as properly POD-type

This commit is contained in:
Wojtek Figat
2023-07-18 18:20:11 +02:00
parent 872509df2a
commit b2b10ce7da
19 changed files with 20 additions and 61 deletions

View File

@@ -76,9 +76,7 @@ public:
/// <summary>
/// Empty constructor.
/// </summary>
Vector4Base()
{
}
Vector4Base() = default;
FORCE_INLINE Vector4Base(T xyzw)
: X(xyzw)