您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

12 行
293 B

  1. #pragma once
  2. #cmakedefine CPPLOGGING_HAS_CPPCORE
  3. #cmakedefine CPPLOGGING_HAS_NLOHMANN_JSON
  4. #ifdef CPPLOGGING_HAS_CPPCORE
  5. #include <cppcore/conversion/convert_cast.h>
  6. #define cpplogging_convert_cast ::cppcore::convert_cast
  7. #else
  8. #define cpplogging_convert_cast static_cast
  9. #endif