Skip to content
Snippets Groups Projects
Commit 555e96c8 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Check c++20 feature __cpp_lib_ranges

parent 6c28d70d
No related branches found
No related tags found
1 merge request!219M214003/develop
Pipeline #65216 passed
......@@ -15,7 +15,11 @@
#include <cassert>
#include "compare.h"
#ifdef __cpp_lib_ranges
namespace ranges = std::ranges;
#else
#error C++20 Ranges library is Not Available!
#endif
// unary operators
// clang-format off
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment