1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Warn fix clang

This commit is contained in:
Peter Boyle 2015-11-29 11:19:12 +00:00
parent 93356fd246
commit 26161addd0

View File

@ -21,6 +21,8 @@ FEenableexcept (unsigned int excepts)
fenv.__mxcsr &= ~(new_excepts << 7);
return ( fesetenv (&fenv) ? -1 : old_excepts );
#else
return 0;
#endif
}