mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
These are used to determine whether to add -std=c++11, -std=gnu++11 etc flags on the compile line.
11 lines
85 B
C++
11 lines
85 B
C++
|
|
constexpr int foo()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char**)
|
|
{
|
|
return foo();
|
|
}
|