Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 строки
774 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. #pragma once
  13. //
  14. // The PEGTL classes
  15. // —————————————————
  16. //
  17. // Ensure CreateFile2() is available on mingw
  18. #if defined _WIN32 && !defined _MSC_VER && \
  19. (!defined _WIN32_WINNT || _WIN32_WINNT < 0x0602)
  20. # undef _WIN32_WINNT
  21. # define _WIN32_WINNT 0x0602
  22. #endif
  23. #include "3rdparty/pegtl/include/tao/pegtl.hpp"