[FileCheck] Add missing include in FileCheckImpl.h
authorThomas Preud'homme <thomasp@graphcore.ai>
Tue, 14 Apr 2020 17:24:32 +0000 (18:24 +0100)
committerThomas Preud'homme <thomasp@graphcore.ai>
Tue, 14 Apr 2020 17:37:37 +0000 (18:37 +0100)
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

index a75530c..2620e9e 100644 (file)
@@ -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"