Remove C++11ism from r200407.
authorJordan Rose <jordan_rose@apple.com>
Wed, 29 Jan 2014 19:14:23 +0000 (19:14 +0000)
committerJordan Rose <jordan_rose@apple.com>
Wed, 29 Jan 2014 19:14:23 +0000 (19:14 +0000)
Oops!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200412 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/CommandLineTest.cpp

index e1d1fa59e58d3e30c4ba2dfcfe9586ffe2597913..4f92fef8b01e17ca1f771751941e02fa03d13d1f 100644 (file)
@@ -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>