https://bugs.llvm.org/show_bug.cgi?id=33680
Bug ID: 33680
Summary: std::right and std::boolalpha not working right
Product: libc++
Version: 4.0
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P
Component: All Bugs
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
std::cout << std::setw(54) << std::setfill(' ') << std::left << "blah test";
std::cout << std::setw(16) << std::setfill('.') << std::right << std::boolalpha
<< false;
std::cout << '\n';
results in:
blah test false...............
If I remove std::boolalpha, or print the string "false" it works as expected.
--
You are receiving this mail because:
You are on the CC list for the bug._______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs