From f7e1e2ecddda1ffe81037e5c4ff890c23760d530 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 24 May 2018 11:47:20 +0000 Subject: [PATCH] [Support] Move header to WithColor header Forgot to move the CommandLine.h include form the implementation to the header and didn't notice the failure with my local modules build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@333177 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/WithColor.h | 1 + lib/Support/WithColor.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/WithColor.h b/include/llvm/Support/WithColor.h index e3559b4002a..85fc5fa0cf1 100644 --- a/include/llvm/Support/WithColor.h +++ b/include/llvm/Support/WithColor.h @@ -11,6 +11,7 @@ #define LLVM_SUPPORT_WITHCOLOR_H #include "llvm/ADT/StringRef.h" +#include "llvm/Support/CommandLine.h" namespace llvm { diff --git a/lib/Support/WithColor.cpp b/lib/Support/WithColor.cpp index d71aed9126b..d2e13f0e86d 100644 --- a/lib/Support/WithColor.cpp +++ b/lib/Support/WithColor.cpp @@ -8,7 +8,6 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/WithColor.h" -#include "llvm/Support/CommandLine.h" #include "llvm/Support/raw_ostream.h" using namespace llvm;