From 2f3915b1a34cc6034f34ccb229e5c0ed2b83391a Mon Sep 17 00:00:00 2001 From: asensi <13171207+asensi@users.noreply.github.com> Date: Tue, 7 Oct 2025 21:47:16 +0200 Subject: [PATCH] Fix the name of a variable --- examples/basic_construction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basic_construction.cpp b/examples/basic_construction.cpp index b3ff18d10..2f9cc1119 100644 --- a/examples/basic_construction.cpp +++ b/examples/basic_construction.cpp @@ -41,8 +41,8 @@ int main() } // Demonstration of the overflow and underflow handling - constexpr decimal64_t oveflow_value {100, 10000}; - if (isinf(oveflow_value)) + constexpr decimal64_t overflow_value {100, 10000}; + if (isinf(overflow_value)) { std::cout << "Overflow constructs infinity" << std::endl; }