mirror of
https://github.com/reactos/CMake.git
synced 2025-05-14 02:25:53 +00:00

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.
16 lines
247 B
C++
16 lines
247 B
C++
#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 + *ai + *(bi - 1);
|
|
}
|