Newer
Older
libj / include / j.hpp
Nomura Kei on 22 Jun 637 bytes update libj
/**
 * @file j.hpp
 * @brief J Library 共通ヘッダファイル。
 * @copyright  2001 - 2024  Nomura Kei
 * @depends
 *   j/os.hpp
 */
#ifndef J_HPP
#define J_HPP

#if defined(__cplusplus) && (__cplusplus >= 201703L)
// For C++17
#include <cstddef>
#include <utility>

#include <j/os.hpp>

#else
// =============================================================================
//  C++17 より古い場合は、ERROR
// =============================================================================
#error "supports C++17 or later"

#endif // ddefined(__cplusplus) && (__cplusplus >= 201703L)
#endif // J_HPP