[llvm] r200412 - Remove C++11ism from r200407.

Jordan Rose jordan_rose at apple.com
Wed Jan 29 11:14:24 PST 2014


Author: jrose
Date: Wed Jan 29 13:14:23 2014
New Revision: 200412

URL: http://llvm.org/viewvc/llvm-project?rev=200412&view=rev
Log:
Remove C++11ism from r200407.

Oops!

Modified:
    llvm/trunk/unittests/Support/CommandLineTest.cpp

Modified: llvm/trunk/unittests/Support/CommandLineTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Support/CommandLineTest.cpp?rev=200412&r1=200411&r2=200412&view=diff
==============================================================================
--- llvm/trunk/unittests/Support/CommandLineTest.cpp (original)
+++ llvm/trunk/unittests/Support/CommandLineTest.cpp Wed Jan 29 13:14:23 2014
@@ -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>





More information about the llvm-commits mailing list