diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-12-15 07:23:44 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-12-15 07:23:44 +0000 |
commit | 7dfa62687c181d5ffad0be3dfdf9763f22374d22 (patch) | |
tree | c53308c3243baed48dfa4408c8da3047187de3bb /libcxx/test/std | |
parent | f4d7c186283b60afd0c0a1f386088caf8a5f265d (diff) | |
download | bcm5719-llvm-7dfa62687c181d5ffad0be3dfdf9763f22374d22.tar.gz bcm5719-llvm-7dfa62687c181d5ffad0be3dfdf9763f22374d22.zip |
Fix typo
llvm-svn: 289781
Diffstat (limited to 'libcxx/test/std')
-rw-r--r-- | libcxx/test/std/utilities/utility/pairs/pairs.pair/dtor.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/dtor.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/dtor.pass.cpp index 89411f147f0..cf88b7f15fe 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/dtor.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/dtor.pass.cpp @@ -31,5 +31,5 @@ int main() static_assert((std::is_trivially_destructible< std::pair<int, float> >::value), ""); static_assert((!std::is_trivially_destructible< - std::pair<int, std::string>::value), ""); + std::pair<int, std::string> >::value), ""); } |