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
After clear() is called, nothing behave as it should be. My program even crashes sometimes. Not sure if it also happens to ordered_map
tsl::ordered_set<int> test2; test2.insert(6); test2.clear(); test2.insert(104); test2.insert(1099); test2.insert(302); test2.insert(208); test2.insert(301); test2.erase(301); std::cout << "ordered_set: "; for (auto & i : test2) { std::cout << i << " "; } std::cout <<"\n\n"; test2.erase(302); test2.insert(302); std::cout << "ordered_set: "; for (auto & i : test2) { std::cout << i << " "; } std::cout <<"\n\n"; test2.erase(302); test2.insert(302); std::cout << "ordered_set: "; for (auto & i : test2) { std::cout << i << " "; } std::cout <<"\n\n";
output: ordered_set: 104 1099 302 208 ordered_set: 104 1099 302 208 ordered_set: 104 1099 302 208 ordered_set: 104 1099 302 208 301
should be: ordered_set: 104 1099 302 208 ordered_set: 104 1099 208 302 ordered_set: 104 1099 208 302 ordered_set: 104 1099 208 301
The text was updated successfully, but these errors were encountered:
Bug correction on clear() (#5): don't clear the whole buckets array. …
c380513
…Clear each bucket individually. bucket_count() should be the same before and after calling clear().
Thank you. There was effectively a bug in clear(), made the correction.
clear()
I get the following results now (some code seems to be missing in your example, there is only three printed lines):
ordered_set: 104 1099 302 208 ordered_set: 104 1099 208 302 ordered_set: 104 1099 208 302
Sorry, something went wrong.
I download latest commit and it's working fine now. Thank you for your good work and fast response!
No branches or pull requests
After clear() is called, nothing behave as it should be. My program even crashes sometimes.
Not sure if it also happens to ordered_map
output:
ordered_set: 104 1099 302 208
ordered_set: 104 1099 302 208
ordered_set: 104 1099 302 208
ordered_set: 104 1099 302 208 301
should be:
ordered_set: 104 1099 302 208
ordered_set: 104 1099 208 302
ordered_set: 104 1099 208 302
ordered_set: 104 1099 208 301
The text was updated successfully, but these errors were encountered: