mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 15:48:52 +00:00
913394af24
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();
|
|
}
|