诸暨麻将添加redis
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

28 righe
604 B

  1. //
  2. // Copyright(c) 2016-2018 Gabi Melman.
  3. // Distributed under the MIT License (http://opensource.org/licenses/MIT)
  4. //
  5. #pragma once
  6. //
  7. // Include a bundled header-only copy of fmtlib or an external one.
  8. // By default spdlog include its own copy.
  9. //
  10. #if !defined(SPDLOG_FMT_EXTERNAL)
  11. #ifdef SPDLOG_HEADER_ONLY
  12. #ifndef FMT_HEADER_ONLY
  13. #define FMT_HEADER_ONLY
  14. #endif
  15. #endif
  16. #ifndef FMT_USE_WINDOWS_H
  17. #define FMT_USE_WINDOWS_H 0
  18. #endif
  19. #include "bundled/core.h"
  20. #include "bundled/format.h"
  21. #else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
  22. #include <fmt/core.h>
  23. #include <fmt/format.h>
  24. #endif