1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00

Extend C++17/C++14 feature checks to cover more standard library APIs

Make sure `std::cbegin`, `std::cend`, and `std::size` work in C++17 or
C++14 mode before choosing the corresponding standard level for
compiling CMake itself.  This helps in cases that the compiler is using
a standard library too old to support the full standard level chosen.
This commit is contained in:
Mathieu Garaud
2019-02-27 15:47:41 +01:00
committed by Brad King
parent e6897c72e7
commit e17deb7ad4
2 changed files with 18 additions and 2 deletions

View File

@@ -1,8 +1,15 @@
#include <cstdio>
#include <iterator>
#include <memory>
int main()
{
int a[] = { 0, 1, 2 };
auto ai = std::cbegin(a);
int b[] = { 2, 1, 0 };
auto bi = std::cend(b);
std::unique_ptr<int> u(new int(0));
return *u;
return *u + *ai + *(bi - 1);
}

View File

@@ -1,9 +1,18 @@
#include <cstdio>
#include <iterator>
#include <memory>
#include <unordered_map>
int main()
{
int a[] = { 0, 1, 2 };
auto ai = std::cbegin(a);
int b[] = { 2, 1, 0 };
auto bi = std::cend(b);
auto ci = std::size(a);
std::unique_ptr<int> u(new int(0));
return *u;
return *u + *ai + *(bi - 1) + (3 - static_cast<int>(ci));
}