Skip to content
Snippets Groups Projects
Commit 38581b5b authored by scott snyder's avatar scott snyder
Browse files

CxxUtils: Add a feature macro for C++20 ranges.

Add HAVE_STD_RANGES macro to features.h.
parent 558f5b45
No related branches found
No related tags found
1 merge request!66724CxxUtils: Add a feature macro for C++20 ranges.
......@@ -16,6 +16,10 @@
#if __has_include( <features.h> )
# include <features.h>
#endif
// cppcheck-suppress preprocessorErrorDirective
#if __has_include( <version> )
# include <version>
#endif
// If we're using glibc, this should have been defined by features.h.
// Otherwise, define a dummy.
......@@ -118,4 +122,12 @@
# define HAVE_FEENABLEEXCEPT 0
#endif
// Do we have C++20 ranges?
#if __cpp_lib_ranges
# define HAVE_STD_RANGES 1
#else
# define HAVE_STD_RANGES 0
#endif
#endif // not CXXUTILS_FEATURES_H
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