Skip to content

Commit

Permalink
Fix experimental/string_view detection
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jan 13, 2018
1 parent 0f98773 commit c719d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# define FMT_HAS_EXPERIMENTAL_STRING_VIEW 0
#else
# define FMT_HAS_STRING_VIEW 0
# if (FMT_HAS_INCLUDE(<experimental/string_view>) && __cplusplus > 201402L)
# if (FMT_HAS_INCLUDE(<experimental/string_view>) && __cplusplus >= 201402L)
# include <experimental/string_view>
# define FMT_HAS_EXPERIMENTAL_STRING_VIEW 1
# else
Expand Down

0 comments on commit c719d94

Please sign in to comment.