summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unittests/Support/CommandLineTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/CommandLineTest.cpp b/unittests/Support/CommandLineTest.cpp
index e1d1fa59e5..4f92fef8b0 100644
--- a/unittests/Support/CommandLineTest.cpp
+++ b/unittests/Support/CommandLineTest.cpp
@@ -44,7 +44,7 @@ class TempEnvVar {
template <typename T>
class StackOption : public cl::opt<T> {
- using Base = cl::opt<T>;
+ typedef cl::opt<T> Base;
public:
// One option...
template<class M0t>