Skip to content
Snippets Groups Projects
Commit 7af37cd0 authored by Christian Engwer's avatar Christian Engwer
Browse files

[mingw] don't try to call feenableexcept on windows

parent 67fb819b
No related branches found
No related tags found
1 merge request!88Feature/support mingw
......@@ -297,8 +297,8 @@ void testTranspose(const MatrixType& matrix)
int main()
{
// feenableexcept does not exist on OS X
#ifndef __APPLE__
// feenableexcept does not exist on OS X or windows
#if not defined( __APPLE__ ) and not defined( __MINGW32__ )
feenableexcept(FE_INVALID);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment