Author: Jason Molenda Date: 2022-09-28T17:35:35-07:00 New Revision: 34f3e576806bc91f7ebf3da43cf9c1cbc18c0ba2
URL: https://github.com/llvm/llvm-project/commit/34f3e576806bc91f7ebf3da43cf9c1cbc18c0ba2 DIFF: https://github.com/llvm/llvm-project/commit/34f3e576806bc91f7ebf3da43cf9c1cbc18c0ba2.diff LOG: Include <cmath> 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. Added: Modified: lldb/unittests/Utility/ScalarTest.cpp Removed: ################################################################################ diff --git a/lldb/unittests/Utility/ScalarTest.cpp b/lldb/unittests/Utility/ScalarTest.cpp index 1e65cd535733d..17dfc689dd4e8 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 <cmath> + using namespace lldb_private; using llvm::APFloat; using llvm::APInt; _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits