[libcxx] [test] D27026: Fix copy-paste silliness; ULL can't ever be 32-bit.

llvm-svn: 287828
This commit is contained in:
Stephan T. Lavavej 2016-11-23 22:02:59 +00:00
parent 8eb5ce8652
commit 640660aa3f
1 changed files with 1 additions and 1 deletions

View File

@ -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);