From b34c9049cb1a3a5c290ce1ac8746e90d44053a3c Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Tue, 14 Apr 2020 18:24:32 +0100 Subject: [PATCH] [FileCheck] Add missing include in FileCheckImpl.h FileCheckImpl.h internal header uses type defined in the public FileCheck.h header but fails to include it. This commit fixes that. Test Plan: Built it locally successfully. --- llvm/lib/Support/FileCheckImpl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Support/FileCheckImpl.h b/llvm/lib/Support/FileCheckImpl.h index a75530c..2620e9e 100644 --- a/llvm/lib/Support/FileCheckImpl.h +++ b/llvm/lib/Support/FileCheckImpl.h @@ -15,6 +15,7 @@ #ifndef LLVM_LIB_SUPPORT_FILECHECKIMPL_H #define LLVM_LIB_SUPPORT_FILECHECKIMPL_H +#include "llvm/Support/FileCheck.h" #include "llvm/ADT/Optional.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringRef.h" -- 2.7.4