diff options
author | 2012-09-18 22:15:43 +0100 | |
---|---|---|
committer | 2012-09-18 22:15:48 +0100 | |
commit | a39850d8b6ea39ffc8b59580c3af73935a415f5a (patch) | |
tree | 33f28ae866c0c4800b1da523bc65372571aa2d9e | |
parent | 5f0f4decc5abcf6f26a9ffd2e9b58b73123c9632 (diff) | |
download | paludis-a39850d8b6ea39ffc8b59580c3af73935a415f5a.tar.gz paludis-a39850d8b6ea39ffc8b59580c3af73935a415f5a.tar.xz |
Compile fix
-rw-r--r-- | paludis/repositories/e/e_slot_key.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paludis/repositories/e/e_slot_key.cc b/paludis/repositories/e/e_slot_key.cc index ecc90d111..f97fb22d4 100644 --- a/paludis/repositories/e/e_slot_key.cc +++ b/paludis/repositories/e/e_slot_key.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2010, 2011 Ciaran McCreesh + * Copyright (c) 2010, 2011, 2012 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -133,7 +133,7 @@ ESlotKeyStore::fetch( auto i(_imp->store.find(x)); if (i == _imp->store.end()) i = _imp->store.insert(std::make_pair(x, std::make_shared<const ESlotKey>(make_named_values<Slot>( - n::match_values() = std::make_pair(s, t), + n::match_values() = std::make_pair(SlotName(s), SlotName(t)), n::parallel_value() = s, n::raw_value() = ss), v, mkt))).first; return i->second; |