-
Notifications
You must be signed in to change notification settings - Fork 37
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
[#205] Implemented multimap test #242
base: master
Are you sure you want to change the base?
Conversation
} | ||
}; | ||
|
||
// template <typename T> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove commented code
entry->value.push_back(value); | ||
|
||
bool inserted = insfun(&entry->value, value, false); | ||
// entry->value.push_back(value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove commented code
@@ -1064,8 +1131,8 @@ LocalMultimap<KTYPE, VTYPE, KEY_COMPARE>::Insert(const KTYPE &key, | |||
PENDING_INSERT)) { | |||
rt::impl::yield(); | |||
} | |||
entry->value.push_back(value); | |||
|
|||
// entry->value.push_back(value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove commented code
Implemented localmultimap and multimap test along with file changes