diff options
-rw-r--r-- | paludis/environments/paludis/output_conf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/environments/paludis/output_conf.cc b/paludis/environments/paludis/output_conf.cc index f490ed219..e8b15be11 100644 --- a/paludis/environments/paludis/output_conf.cc +++ b/paludis/environments/paludis/output_conf.cc @@ -398,7 +398,7 @@ OutputConf::add(const FSPath & filename) for (Managers::const_iterator m(local_managers.begin()), m_end(local_managers.end()) ; m != m_end ; ++m) - _imp->managers[m->first] = m->second; + _imp->managers.insert(std::make_pair(m->first, m->second)); for (auto i(f->begin()), i_end(f->end()) ; i != i_end ; ++i) |