blob: e27bc87b224076ff6cf5ec6651a54f3d5d600fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// This program prints the C++ language standard your compiler is currently
// using
#include <iostream>
const int numStandards = 7;
const long stdCode[numStandards] = {199711L, 201103L, 201402L, 201703L,
202002L, 202302L, 202612L};
const char *stdName[numStandards] = {"Pre-C++11", "C++11", "C++14", "C++17",
"C++20", "C++23", "C++26"};
long getCPPStandard() {
#if defined(_MSVC_LANG)
return _MSVC_LANG;
#elif defined(_MSC_VER)
return -1;
#else
return __cplusplus;
#endif
}
int main() {
long standard = getCPPStandard();
if (standard == -1) {
std::cout << "Error: Unable to determine your language standard.\n";
return 0;
}
for (int i = 0; i < numStandards; ++i) {
// If the reported version is one of the finalized standard
// codes then we know exactly what version the compiler is
// running
if (standard == stdCode[i]) {
std::cout << "Your compiler is using " << stdName[i]
<< " (language standard code " << standard << "L)\n";
break;
}
}
return 0;
}
|