From 34f3e576806bc91f7ebf3da43cf9c1cbc18c0ba2 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Wed, 28 Sep 2022 17:35:35 -0700 Subject: [PATCH] Include before using std::pow() Not sure why this is failing for me to build tonight, but either something in a header somewhere changed or my tools changed, and it is failing to compile. --- lldb/unittests/Utility/ScalarTest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/unittests/Utility/ScalarTest.cpp b/lldb/unittests/Utility/ScalarTest.cpp index 1e65cd535733..17dfc689dd4e 100644 --- a/lldb/unittests/Utility/ScalarTest.cpp +++ b/lldb/unittests/Utility/ScalarTest.cpp @@ -15,6 +15,8 @@ #include "lldb/Utility/StreamString.h" #include "llvm/Testing/Support/Error.h" +#include + using namespace lldb_private; using llvm::APFloat; using llvm::APInt;