summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2014-01-29 19:14:23 +0000
committerJordan Rose <jordan_rose@apple.com>2014-01-29 19:14:23 +0000
commit94b3a88395ff0ea6c253efe5dd2b9d400ffe7c9d (patch)
tree8f2406196cf021199bca4f66c8c4d01966be1b64 /unittests
parent654247c3ea3304b434cb3f0dcf69338073651158 (diff)
downloadllvm-94b3a88395ff0ea6c253efe5dd2b9d400ffe7c9d.tar.gz
llvm-94b3a88395ff0ea6c253efe5dd2b9d400ffe7c9d.tar.bz2
llvm-94b3a88395ff0ea6c253efe5dd2b9d400ffe7c9d.tar.xz
Remove C++11ism from r200407.
Oops! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-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>