summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Support
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
commitd2ad22ae41abb1864103bc25e23de694895e181b (patch)
treebe85279d88f559748cb49f879ca95f73911ac6eb /llvm/unittests/Support
parent28a70c543dd8112f04f46a5d00866b9df08f5d04 (diff)
downloadbcm5719-llvm-d2ad22ae41abb1864103bc25e23de694895e181b.tar.gz
bcm5719-llvm-d2ad22ae41abb1864103bc25e23de694895e181b.zip
Remove C++11ism from r200407.
Oops! llvm-svn: 200412
Diffstat (limited to 'llvm/unittests/Support')
-rw-r--r--llvm/unittests/Support/CommandLineTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/CommandLineTest.cpp b/llvm/unittests/Support/CommandLineTest.cpp
index e1d1fa59e58..4f92fef8b01 100644
--- a/llvm/unittests/Support/CommandLineTest.cpp
+++ b/llvm/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>
OpenPOWER on IntegriCloud