• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /// @ref core
2 /// @file glm/detail/_fixes.hpp
3 
4 #include <cmath>
5 
6 //! Workaround for compatibility with other libraries
7 #ifdef max
8 #undef max
9 #endif
10 
11 //! Workaround for compatibility with other libraries
12 #ifdef min
13 #undef min
14 #endif
15 
16 //! Workaround for Android
17 #ifdef isnan
18 #undef isnan
19 #endif
20 
21 //! Workaround for Android
22 #ifdef isinf
23 #undef isinf
24 #endif
25 
26 //! Workaround for Chrone Native Client
27 #ifdef log2
28 #undef log2
29 #endif
30 
31