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.
 
 
 

11 line
239 B

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