Skip to content

Commit 2f3915b

Browse files
authored
Fix the name of a variable
1 parent 332f08f commit 2f3915b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/basic_construction.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ int main()
4141
}
4242

4343
// Demonstration of the overflow and underflow handling
44-
constexpr decimal64_t oveflow_value {100, 10000};
45-
if (isinf(oveflow_value))
44+
constexpr decimal64_t overflow_value {100, 10000};
45+
if (isinf(overflow_value))
4646
{
4747
std::cout << "Overflow constructs infinity" << std::endl;
4848
}

0 commit comments

Comments
 (0)