Skip to content

Commit b1add2b

Browse files
author
Thomas Preud'homme
committed
[FileCheck] Add missing includes in header
Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk Subscribers: hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D65778 llvm-svn: 368297
1 parent 4f64f1b commit b1add2b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

llvm/include/llvm/Support/FileCheck.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@
1313
#ifndef LLVM_SUPPORT_FILECHECK_H
1414
#define LLVM_SUPPORT_FILECHECK_H
1515

16+
#include "llvm/ADT/Optional.h"
1617
#include "llvm/ADT/StringMap.h"
18+
#include "llvm/ADT/StringRef.h"
19+
#include "llvm/Support/Error.h"
1720
#include "llvm/Support/MemoryBuffer.h"
1821
#include "llvm/Support/Regex.h"
1922
#include "llvm/Support/SourceMgr.h"
20-
#include <vector>
2123
#include <map>
24+
#include <string>
25+
#include <vector>
2226

2327
namespace llvm {
2428

llvm/lib/Support/FileCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
#include "llvm/Support/FileCheck.h"
1717
#include "llvm/ADT/StringSet.h"
18+
#include "llvm/ADT/Twine.h"
1819
#include "llvm/Support/FormatVariadic.h"
1920
#include <cstdint>
2021
#include <list>
21-
#include <map>
2222
#include <tuple>
2323
#include <utility>
2424

0 commit comments

Comments
 (0)