We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/// swaps the contents void swap(fifo_map& other) { std::swap(m_map, other.m_map); std::swap(m_compare, other.m_compare); std::swap(m_keys, other.m_keys); }
m_compare‘s member m_key point to m_map's m_key
The text was updated successfully, but these errors were encountered:
The use the of the compiler-provided copy-assignment operator is also incorrect.
Sorry, something went wrong.
No branches or pull requests
m_compare‘s member m_key point to m_map's m_key
The text was updated successfully, but these errors were encountered: