diff options
Diffstat (limited to 'include/clang/Driver/Tool.h')
-rw-r--r-- | include/clang/Driver/Tool.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/clang/Driver/Tool.h b/include/clang/Driver/Tool.h index c30fa4c6e7..378b516b39 100644 --- a/include/clang/Driver/Tool.h +++ b/include/clang/Driver/Tool.h @@ -10,9 +10,7 @@ #ifndef CLANG_DRIVER_TOOL_H_ #define CLANG_DRIVER_TOOL_H_ -namespace llvm { - template<typename T, unsigned N> class SmallVector; -} +#include "clang/Basic/LLVM.h" namespace clang { namespace driver { @@ -23,7 +21,7 @@ namespace driver { class JobAction; class ToolChain; - typedef llvm::SmallVector<InputInfo, 4> InputInfoList; + typedef SmallVector<InputInfo, 4> InputInfoList; /// Tool - Information on a specific compilation tool. class Tool { |