From fd28fc9fedbef5658b6ee4e8ca48f48f0996c35d Mon Sep 17 00:00:00 2001 From: Skelp <59535863+Skelp@users.noreply.github.com> Date: Thu, 23 Jul 2026 17:31:59 +0000 Subject: [PATCH] Add cmath include for mathematical functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes `common/speculative.cpp:1091:35: error: ‘isfinite’ is not a member of ‘std’` --- common/speculative.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/speculative.cpp b/common/speculative.cpp index e6ec8f6ac62f..07df3521dd44 100644 --- a/common/speculative.cpp +++ b/common/speculative.cpp @@ -13,6 +13,7 @@ #include #include +#include #include #include #include