Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libstdc++-v3/include/bits/locale_facets_nonio.tcc
Original file line number Diff line number Diff line change
Expand Up @@ -1474,8 +1474,8 @@ _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11
// calls. So e.g. if __fmt is "%p %I:%M:%S", we can't handle it
// properly, because we first handle the %p am/pm specifier and only
// later the 12-hour format specifier.
if ((void*)(this->*(&time_get::do_get)) == (void*)(&time_get::do_get))
__use_state = true;
if ((void*)(this->*(&time_get::do_get)) == (&time_get::do_get))
__use_state = true;
#pragma GCC diagnostic pop
#endif
__time_get_state __state = __time_get_state();
Expand Down