diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2016-11-23 22:02:59 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2016-11-23 22:02:59 +0000 |
commit | 640660aa3f5d3b9d5bbd944fc5fd2d02b0a4f0d5 (patch) | |
tree | 2171b8ab85c1b92be1836a9ff0b78cb3e58fa2f3 /libcxx/test/std/localization | |
parent | 8eb5ce86529a3f67571b07d5a47419bb8c9cd230 (diff) | |
download | bcm5719-llvm-640660aa3f5d3b9d5bbd944fc5fd2d02b0a4f0d5.tar.gz bcm5719-llvm-640660aa3f5d3b9d5bbd944fc5fd2d02b0a4f0d5.zip |
[libcxx] [test] D27026: Fix copy-paste silliness; ULL can't ever be 32-bit.
llvm-svn: 287828
Diffstat (limited to 'libcxx/test/std/localization')
-rw-r--r-- | libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp index 6700564cfe5..eaf670972ba 100644 --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp @@ -65,7 +65,7 @@ int main() char str[50]; output_iterator<char*> iter = f.put(output_iterator<char*>(str), ios, '*', v); std::string ex(str, iter.base()); - assert(ex == (sizeof(unsigned long long) == 4 ? "4294967295" : "18446744073709551615")); + assert(ex == "18446744073709551615"); } { std::ios ios(0); |