mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-15 00:21:09 +08:00

The check for C++14 and cstdio is a special case of the more general problem of checking that the compiler's C++14 mode supports everything we need. Rename the checks accordingly.
6 lines
45 B
C++
6 lines
45 B
C++
#include <cstdio>
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|