You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was going to suggest to replace this loop with a call to std::erase_if(m, [](auto& entry) { return entry->index == -1; });
But this doesn't work (yet) because:
std::erase_if() is only available in c++20
it works on STL containers, but not on QMap. Any reason why you've chosen QMap instead of std::map?
I was going to suggest to replace this loop with a call to
std::erase_if(m, [](auto& entry) { return entry->index == -1; });
But this doesn't work (yet) because:
So no need to change anything (yet).
Originally posted by @m9710797 in #104 (comment)
The text was updated successfully, but these errors were encountered: