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.
 
 
 

26 lines
746 B

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright © 2010—2020 Sam Hocevar <sam@hocevar.net>
  5. //
  6. // Lol Engine is free software. It comes without any warranty, to
  7. // the extent permitted by applicable law. You can redistribute it
  8. // and/or modify it under the terms of the Do What the Fuck You Want
  9. // to Public License, Version 2, as published by the WTFPL Task Force.
  10. // See http://www.wtfpl.net/ for more details.
  11. //
  12. // Undefine some intrusive macros from the Windows headers but allow
  13. // to restore them afterwards if that’s what the user really wants.
  14. #if _MSC_VER
  15. # pragma push_macro("min")
  16. # pragma push_macro("max")
  17. # pragma push_macro("near")
  18. # pragma push_macro("far")
  19. # undef min
  20. # undef max
  21. # undef near
  22. # undef far
  23. #endif