diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-02-05 22:47:41 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-02-05 22:47:41 +0000 |
commit | 50bd9576f0e736bafa0aa8d082e6bd8a538b68f4 (patch) | |
tree | 4ea79d5ca486e0f622915db78c5f998a5f587d2b /libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp | |
parent | 03fe6e2da23ed6e8317bda3b81d0ac3bb36009b3 (diff) | |
download | bcm5719-llvm-50bd9576f0e736bafa0aa8d082e6bd8a538b68f4.tar.gz bcm5719-llvm-50bd9576f0e736bafa0aa8d082e6bd8a538b68f4.zip |
[libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3.
These typedefs were completely unused.
Fixes D29136.
llvm-svn: 294155
Diffstat (limited to 'libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp')
-rw-r--r-- | libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp b/libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp index 4fd974273de..13a9a4b96aa 100644 --- a/libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.cons/substr.pass.cpp @@ -98,7 +98,6 @@ void test(S str, unsigned pos, unsigned n, const typename S::allocator_type& a) { typedef typename S::traits_type T; - typedef typename S::allocator_type A; if (pos <= str.size()) { |