Remove C++11ism from r200407.

Oops!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200412 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jordan Rose 2014-01-29 19:14:23 +00:00
parent 654247c3ea
commit 94b3a88395

View 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>