+ remove const& qualifier
This commit is contained in:
parent
438bfad732
commit
28ea89fe1c
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ public:
|
|||
return map_.erase(key)==1;
|
||||
}
|
||||
|
||||
product_type* create_object(const key_type& key, Args const&...args)
|
||||
product_type* create_object(const key_type& key, Args...args)
|
||||
{
|
||||
typename product_map::const_iterator pos=map_.find(key);
|
||||
if (pos!=map_.end())
|
||||
|
|
Loading…
Add table
Reference in a new issue