From 44e87b8277f0c94d8b4e386fc239707f794362e2 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Thu, 29 Jan 2026 20:07:09 -0500 Subject: [PATCH] Fix double negative --- src/test/basics/Number_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/basics/Number_test.cpp b/src/test/basics/Number_test.cpp index 4da0621439..e728a70b2b 100644 --- a/src/test/basics/Number_test.cpp +++ b/src/test/basics/Number_test.cpp @@ -2071,7 +2071,7 @@ public: // number to avoid overflow and UB Number const n{ true, - -static_cast( + static_cast( std::numeric_limits::min()) + 1, 0,