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.
 
 
 

12 lines
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