-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from NuiCpp/range-improvements
Range Improvements
- Loading branch information
Showing
18 changed files
with
731 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#pragma once | ||
|
||
#ifdef __has_include | ||
# if __has_include(<version>) | ||
# include <version> | ||
# ifdef __cpp_lib_ranges | ||
# ifndef NUI_HAS_STD_RANGES | ||
# define NUI_HAS_STD_RANGES 1 | ||
# elif NUI_HAS_STD_RANGES == 0 | ||
# undef NUI_HAS_STD_RANGES | ||
# endif | ||
# endif | ||
# endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.