//////////////////////////////////////////////////////////////////////////////// // // KCPP Header File // #ifndef KCPP_HPP #define KCPP_HPP #if defined(__cplusplus) && (__cplusplus >= 201703L) // ============================================================================= // C++17 // ============================================================================= #include <cstdint> #else // ============================================================================= // ERROR // ============================================================================= #error "suuports C++17 or later" #endif // C++17, ERROR #endif // KCPP_HPP