From 43d95b5dc2c4a693c3a0ba5185016ba077fdd3a5 Mon Sep 17 00:00:00 2001 From: Damiano <54273858+ienapliss@users.noreply.github.com> Date: Mon, 27 Jan 2020 00:13:47 +0100 Subject: [PATCH] for mingw --- src/nvmath/Matrix.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/nvmath/Matrix.cpp b/src/nvmath/Matrix.cpp index 75429e5..84a4c3f 100644 --- a/src/nvmath/Matrix.cpp +++ b/src/nvmath/Matrix.cpp @@ -8,7 +8,11 @@ #include #if !NV_CC_MSVC && !NV_OS_ORBIS -#include + #if defined __MINGW32__ || defined __MINGW64__ + #include + #else + #include + #endif #endif using namespace nv; @@ -484,4 +488,3 @@ double invert(Mat4& B, const Mat4& m) #endif // 0 -