Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
9856ed02
Commit
9856ed02
authored
Jan 26, 2018
by
Jan Möbius
Browse files
Small compilation fix for MINGW64 cross-compilation
parent
7856a437
Changes
2
Hide whitespace changes
Inline
Side-by-side
Doc/changelog.docu
View file @
9856ed02
...
...
@@ -32,6 +32,7 @@
<li>enable c++11 features of many classes for Visual Studio 2013</li>
<li>Fixed broken version macros (Thanks to Frederik Salomonsson for the fix)</li>
<li>Fixed Build on gcc-7.2 (Thanks to Gero Müller and Martial Tola for the patches)</li>
<li>Small compilation fix for MINGW64 cross-compilation(Thanks to Manuel Massing for the patch)</li>
</ul>
<b>Tools</b>
...
...
src/OpenMesh/Tools/Utils/conio.cc
View file @
9856ed02
...
...
@@ -64,7 +64,7 @@ int getche() { return ::_getche(); }
}
// AS
// ----------------------------------------------------------------- Win32 ----
#elif defined(WIN32)
#elif defined(WIN32)
|| defined(__MINGW32__)
#include
<conio.h>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment