Skip to content

Commit 421e86a

Browse files
authored
Improve <system_error> functions page
1 parent 649b8e1 commit 421e86a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/standard-library/system-error-functions.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff 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
2628
template <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
3337
template <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
8084
const error_category& system_category() noexcept;

0 commit comments

Comments
 (0)