12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef cmsys_Configure_hxx
- #define cmsys_Configure_hxx
- #include <cmsys/Configure.h>
- #define cmsys_STL_HAS_WSTRING 1
- #define cmsys_CXX_HAS_EXT_STDIO_FILEBUF_H \
- 1
- #if defined(__SUNPRO_CC) && __SUNPRO_CC > 0x5130 && defined(__has_attribute)
- #define cmsys__has_cpp_attribute(x) __has_attribute(x)
- #elif defined(__has_cpp_attribute)
- #define cmsys__has_cpp_attribute(x) __has_cpp_attribute(x)
- #else
- #define cmsys__has_cpp_attribute(x) 0
- #endif
- #if __cplusplus >= 201103L
- #define cmsys_NULLPTR nullptr
- #else
- #define cmsys_NULLPTR 0
- #endif
- #ifndef cmsys_FALLTHROUGH
- #if __cplusplus >= 201703L && cmsys__has_cpp_attribute(fallthrough)
- #define cmsys_FALLTHROUGH [[fallthrough]]
- #elif __cplusplus >= 201103L && \
- cmsys__has_cpp_attribute(gnu::fallthrough)
- #define cmsys_FALLTHROUGH [[gnu::fallthrough]]
- #elif __cplusplus >= 201103L && \
- cmsys__has_cpp_attribute(clang::fallthrough)
- #define cmsys_FALLTHROUGH [[clang::fallthrough]]
- #endif
- #endif
- #ifndef cmsys_FALLTHROUGH
- #define cmsys_FALLTHROUGH static_cast<void>(0)
- #endif
- #undef cmsys__has_cpp_attribute
- #if defined(KWSYS_NAMESPACE)
- #if !cmsys_NAME_IS_KWSYS
- #define kwsys cmsys
- #endif
- #define KWSYS_NAME_IS_KWSYS cmsys_NAME_IS_KWSYS
- #define KWSYS_STL_HAS_WSTRING cmsys_STL_HAS_WSTRING
- #define KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H \
- cmsys_CXX_HAS_EXT_STDIO_FILEBUF_H
- #define KWSYS_FALLTHROUGH cmsys_FALLTHROUGH
- #define KWSYS_NULLPTR cmsys_NULLPTR
- #endif
- #endif
|