File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 795
795
class system_error;
796
796
797
797
template <class T>
798
- struct is_error_code_enum : public false_type {};
798
+ struct is_error_code_enum : public false_type {};
799
799
800
800
template <class T>
801
- struct is_error_condition_enum : public false_type {};
801
+ struct is_error_condition_enum : public false_type {};
802
802
803
803
enum class errc {
804
804
address_family_not_supported, // \tcode {EAFNOSUPPORT}
911
911
template <> struct hash<error_condition>;
912
912
913
913
// \ref {syserr }, system error support
914
- template <class T> inline constexpr bool is_error_code_enum_v
915
- = is_error_code_enum<T>::value;
916
- template <class T> inline constexpr bool is_error_condition_enum_v
917
- = is_error_condition_enum<T>::value;
914
+ template <class T>
915
+ inline constexpr bool is_error_code_enum_v = is_error_code_enum<T>::value;
916
+ template <class T>
917
+ inline constexpr bool is_error_condition_enum_v = is_error_condition_enum<T>::value;
918
918
}
919
919
\end {codeblock }
920
920
You can’t perform that action at this time.
0 commit comments