Merge branch 'MinGW_Fix' into 'master'

Small compilation fix for MINGW64 cross-compilation

See merge request OpenMesh/OpenMesh!151
This commit is contained in:
Jan Möbius
2018-01-26 15:24:30 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -64,7 +64,7 @@ int getche() { return ::_getche(); }
} // AS
// ----------------------------------------------------------------- Win32 ----
#elif defined(WIN32)
#elif defined(WIN32) || defined(__MINGW32__)
#include <conio.h>