TrigramIndex.h - move unnecessary StringRef include down to TrigramIndex.cpp

This commit is contained in:
Simon Pilgrim 2022-02-02 16:29:35 +00:00
parent b2a0cc1c65
commit 6440197ba5
2 changed files with 2 additions and 1 deletions

View File

@ -27,12 +27,12 @@
#define LLVM_SUPPORT_TRIGRAMINDEX_H
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include <string>
#include <unordered_map>
#include <vector>
namespace llvm {
class StringRef;
class TrigramIndex {
public:

View File

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