C++ Library Extensions 2022.12.09
To help learn modern C++ programming
tpf_prime.hpp
Go to the documentation of this file.
1
11#ifndef _TPF_PRIME_HPP
12#define _TPF_PRIME_HPP
13
14#ifndef NOMINMAX
15#define NOMINMAX
16#endif
17
18#ifdef _MSVC_LANG
19 #if _MSVC_LANG < 201703L
20 #error This libary requires C++17 Standard (Visual Studio 2017).
21 #endif
22#else
23
24 #if __cplusplus < 201703
25 #error This library requires C++17 Standard (GNU g++ version 8.0 or clang++ version 8.0 above)
26 #endif // end of __cplusplus
27
28#endif // end of _MSVC_LANG
29
30#include <type_traits>
31#include <string>
32#include <cstring>
33
38namespace tpf
39{
44 namespace prime
45 {
46
47
48 } // end of namespace set
49
50} // end of namespace tpf
51
52#endif // end of file _TPF_PRIME_HPP
Includes subnamespace conversion.
Definition: 31-visit.cpp:7