Skip to content

Fixing Error: invalid type argument of unary '*' (have 'int') #64

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

Closed
wants to merge 1 commit into from
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