-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove operator>>
for istream >> setfill(c)
#3725
Conversation
tests/std/tests/VSO_0000000_instantiate_iterators_misc/test.compile.pass.cpp
Outdated
Show resolved
Hide resolved
} | ||
|
||
template <typename IoManip> | ||
void iomanip_test_impl(IoManip iom) { | ||
iomanip_test_impl(iom, iom); | ||
} | ||
|
||
template <typename IoManip> | ||
void iomanip_test_impl_for_setfill(IoManip out) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a little weird that this generic function is used only with setfill
and includes setfill
in its name. I'd call this _output_only
or something, describing what it does instead of how it's currently used. This isn't worth resetting testing, though, so don't bother if we don't need to touch something else.
I'm mirroring this to the MSVC-internal repo - please notify me if any further changes are pushed. |
Thanks for fixing this long-standing nonconformance! 🎉 😸 🚀 |
Fixes #3724