mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-18 02:08:09 +08:00
fix shadow and some undef warnings
This commit is contained in:
@@ -209,7 +209,9 @@ struct is_container : conjunction<
|
|||||||
negation<is_map<T>>, // not a map
|
negation<is_map<T>>, // not a map
|
||||||
negation<std::is_same<T, std::string>>, // not a std::string
|
negation<std::is_same<T, std::string>>, // not a std::string
|
||||||
#if __cplusplus >= 201703L
|
#if __cplusplus >= 201703L
|
||||||
|
#if __has_include(<string_view>)
|
||||||
negation<std::is_same<T, std::string_view>>, // not a std::string_view
|
negation<std::is_same<T, std::string_view>>, // not a std::string_view
|
||||||
|
#endif // has_include(<string_view>)
|
||||||
#endif
|
#endif
|
||||||
has_iterator<T>, // has T::iterator
|
has_iterator<T>, // has T::iterator
|
||||||
has_value_type<T> // has T::value_type
|
has_value_type<T> // has T::value_type
|
||||||
|
Reference in New Issue
Block a user