File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,20 @@ The `generic_category` object is an implementation of [error_category](../standa
2222
2323## <a name =" is_error_code_enum_v " ></a > is_error_code_enum_v
2424
25+ A helper variable template for the [ ` is_error_code_enum ` ] ( is-error-code-enum-class.md ) value.
26+
2527``` cpp
2628template <class T >
27- inline constexpr bool is_error_code_enum_v = is_error_code_enum<T>::value;
29+ constexpr bool is_error_code_enum_v = is_error_code_enum<T>::value;
2830```
2931
3032## <a name =" is_error_condition_enum_v " ></a > is_error_condition_enum_v
3133
34+ A helper variable template for the [ ` is_error_condition_enum ` ] ( is-error-condition-enum-class.md ) value.
35+
3236``` cpp
3337template <class T >
34- inline constexpr bool is_error_condition_enum_v = is_error_condition_enum<T>::value;
38+ constexpr bool is_error_condition_enum_v = is_error_condition_enum<T>::value;
3539```
3640
3741## <a name =" make_error_code " ></a > make_error_code
@@ -64,7 +68,7 @@ error_condition make_error_condition(std::errc error) noexcept;
6468### Parameters
6569
6670* error* \
67- The ` std::errc ` enumeration value to store in the error code object.
71+ The ` std::errc ` enumeration value to store in the error condition object.
6872
6973### Return Value
7074
@@ -74,7 +78,7 @@ The error condition object.
7478
7579## <a name =" system_category " ></a > system_category
7680
77- Represents the category for errors caused by low-level system overflows .
81+ Represents the category for operating system errors .
7882
7983``` cpp
8084const error_category& system_category () noexcept ;
You can’t perform that action at this time.
0 commit comments