summaryrefslogtreecommitdiff
path: root/include/llvm/LibDriver/LibDriver.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/LibDriver/LibDriver.h')
-rw-r--r--include/llvm/LibDriver/LibDriver.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/LibDriver/LibDriver.h b/include/llvm/LibDriver/LibDriver.h
index 09495650c1b90..95feb60be4037 100644
--- a/include/llvm/LibDriver/LibDriver.h
+++ b/include/llvm/LibDriver/LibDriver.h
@@ -15,12 +15,10 @@
#ifndef LLVM_LIBDRIVER_LIBDRIVER_H
#define LLVM_LIBDRIVER_LIBDRIVER_H
-#include "llvm/ADT/ArrayRef.h"
-
namespace llvm {
+template <typename T> class ArrayRef;
-int libDriverMain(llvm::ArrayRef<const char*> ARgs);
-
+int libDriverMain(ArrayRef<const char *> ARgs);
}
#endif