From 551a697c5cf33275b66add4fc467fcf59084cffb Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 5 Jun 2021 21:32:41 +0100 Subject: [PATCH] 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) --- llvm/tools/llvm-xray/xray-color-helper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/tools/llvm-xray/xray-color-helper.cpp b/llvm/tools/llvm-xray/xray-color-helper.cpp index ea7ff35..e2cae21 100644 --- a/llvm/tools/llvm-xray/xray-color-helper.cpp +++ b/llvm/tools/llvm-xray/xray-color-helper.cpp @@ -13,6 +13,7 @@ #include "xray-color-helper.h" #include "llvm/Support/FormatVariadic.h" #include "llvm/Support/raw_ostream.h" +#include using namespace llvm; using namespace xray; -- 2.7.4