Remove C++11ism from r200407.
[oota-llvm.git] / 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>