mirror of
https://github.com/microsoft/DirectXMath
synced 2024-11-22 04:10:06 +00:00
Compiler fix is already in 15.7.4
This commit is contained in:
parent
54e2b5424e
commit
2e08f92a3c
@ -456,7 +456,7 @@ __declspec(align(16)) struct XMMATRIX
|
||||
|
||||
XMMATRIX(const XMMATRIX&) = default;
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#if defined(_MSC_VER) && (_MSC_FULL_VER < 191426431)
|
||||
XMMATRIX& operator= (const XMMATRIX& M) noexcept { r[0] = M.r[0]; r[1] = M.r[1]; r[2] = M.r[2]; r[3] = M.r[3]; return *this; }
|
||||
#else
|
||||
XMMATRIX& operator=(const XMMATRIX&) = default;
|
||||
|
Loading…
Reference in New Issue
Block a user