You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/standard-library/limits-enums.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,12 @@ The `<limits>` header provides the following enums:
14
14
The enumeration describes the various methods that an implementation can choose for representing a denormalized floating-point value — one too small to represent as a normalized value:
15
15
16
16
```cpp
17
-
enum float_denorm_style {
17
+
enum float_denorm_style
18
+
{
18
19
denorm_indeterminate = -1,
19
20
denorm_absent = 0,
20
-
denorm_present = 1 };
21
+
denorm_present = 1
22
+
};
21
23
```
22
24
23
25
### Return Value
@@ -39,12 +41,14 @@ See [`numeric_limits::has_denorm`](../standard-library/numeric-limits-class.md#h
39
41
The enumeration describes the various methods that an implementation can choose for rounding a floating-point value to an integer value.
0 commit comments