summaryrefslogtreecommitdiff
path: root/include/clang/Index/Handlers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Index/Handlers.h')
-rw-r--r--include/clang/Index/Handlers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Index/Handlers.h b/include/clang/Index/Handlers.h
index 655aef901cd16..1e017f8a7c833 100644
--- a/include/clang/Index/Handlers.h
+++ b/include/clang/Index/Handlers.h
@@ -14,6 +14,7 @@
#ifndef LLVM_CLANG_INDEX_HANDLERS_H
#define LLVM_CLANG_INDEX_HANDLERS_H
+#include "clang/Basic/LLVM.h"
#include "llvm/ADT/SmallVector.h"
namespace clang {
@@ -61,7 +62,7 @@ public:
template <typename handler_type>
class Storing : public handler_type {
typedef typename handler_type::receiving_type receiving_type;
- typedef llvm::SmallVector<receiving_type, 8> StoreTy;
+ typedef SmallVector<receiving_type, 8> StoreTy;
StoreTy Store;
public: