TrigramIndex.cpp - remove unnecessary includes. NFCI.

TrigramIndex.h already includes most of these.
This commit is contained in:
Simon Pilgrim 2020-09-09 11:26:21 +01:00
parent f16b2d8315
commit 455cce3e21
2 changed files with 1 additions and 6 deletions

View File

@ -27,7 +27,7 @@
#define LLVM_SUPPORT_TRIGRAMINDEX_H
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include <string>
#include <unordered_map>
#include <vector>

View File

@ -15,12 +15,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/TrigramIndex.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include <set>
#include <string>
#include <unordered_map>
using namespace llvm;