Skip to content
Snippets Groups Projects
Commit 720b29b1 authored by Richard Nelson's avatar Richard Nelson
Browse files

added ability to replace existing entries in a LLRegistry

parent e427c671
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,11 @@ class LLRegistry
mMap.erase(key);
}
void replace(ref_const_key_t key, ref_const_value_t value)
{
mMap[key] = value;
}
typename registry_map_t::const_iterator beginItems() const
{
return mMap.begin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment