Skip to content

Commit 9366f69

Browse files
authored
Fix and format cv_status syntax
1 parent b2c7262 commit 9366f69

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/standard-library/condition-variable-enums.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ ms.assetid: f261ad79-e25b-4afa-9f8a-909ce697e0d8
1212
Supplies symbolic names for the return values of the methods of class template [condition_variable](../standard-library/condition-variable-class.md).
1313

1414
```cpp
15-
class cv_status {
16-
no_timeout
17-
timeout
15+
enum class cv_status
16+
{
17+
no_timeout,
18+
timeout
1819
};
1920
```

0 commit comments

Comments
 (0)