mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 06:09:14 -05:00
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
|
|
#include <type_traits>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
// Verify that we have at least c++11
|
|
using returnv = std::integral_constant<int, 0>;
|
|
return returnv::value;
|
|
}
|