diff options
Diffstat (limited to 'p2pvr/daemon/si.cpp')
-rw-r--r-- | p2pvr/daemon/si.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2pvr/daemon/si.cpp b/p2pvr/daemon/si.cpp index 0c5162e..ad33109 100644 --- a/p2pvr/daemon/si.cpp +++ b/p2pvr/daemon/si.cpp @@ -106,7 +106,7 @@ SI::GetEvents(const P2PVR::IntSequence & eventUids, const Ice::Current &) { P2PVR::Events rtn; SqlContainerCreator<P2PVR::Events, P2PVR::Event> cc(rtn); - BOOST_FOREACH(const auto & uid, eventUids){ + for (const auto & uid : eventUids){ cc.populate(Select(SI_eventByUid, uid).second); } if (rtn.size() != eventUids.size()) throw P2PVR::NotFound(); |