Newer
Older
c-interpreter / modules / libkcpp / include / kcpp.hpp
Nomura Kei on 11 Jun 2023 645 bytes UPDATE
////////////////////////////////////////////////////////////////////////////////
//
// 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