1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

xray-color-helper.cpp - add missing implicit cmath header dependency. NFCI.

Noticed while investigating if we can remove an unnecessary MathExtras.h include from SmallVector.h (necessary for gcc builds but not MSVC)
This commit is contained in:
Simon Pilgrim 2021-06-05 21:32:41 +01:00
parent 385d538097
commit 4ab5e47c13

View File

@ -13,6 +13,7 @@
#include "xray-color-helper.h" #include "xray-color-helper.h"
#include "llvm/Support/FormatVariadic.h" #include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
#include <cmath>
using namespace llvm; using namespace llvm;
using namespace xray; using namespace xray;