Collection of DPF-based plugins for packaging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
427B

  1. /// @ref core
  2. /// @file glm/detail/_fixes.hpp
  3. #include <cmath>
  4. //! Workaround for compatibility with other libraries
  5. #ifdef max
  6. #undef max
  7. #endif
  8. //! Workaround for compatibility with other libraries
  9. #ifdef min
  10. #undef min
  11. #endif
  12. //! Workaround for Android
  13. #ifdef isnan
  14. #undef isnan
  15. #endif
  16. //! Workaround for Android
  17. #ifdef isinf
  18. #undef isinf
  19. #endif
  20. //! Workaround for Chrone Native Client
  21. #ifdef log2
  22. #undef log2
  23. #endif