diff options
Diffstat (limited to 'project2/common/rowSetCache.cpp')
-rw-r--r-- | project2/common/rowSetCache.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/project2/common/rowSetCache.cpp b/project2/common/rowSetCache.cpp index 23ae177..95a949b 100644 --- a/project2/common/rowSetCache.cpp +++ b/project2/common/rowSetCache.cpp @@ -3,7 +3,6 @@ #include "rowSet.h" #include "rowProcessor.h" #include "logger.h" -#include <boost/foreach.hpp> #include <glibmm/exception.h> RowSetCache::RowSetCache(ScriptNodePtr p) : @@ -38,11 +37,11 @@ bool RowSetCache::checkAndExecute(ExecContext * ec, const Glib::ustring & n, con void RowSetCache::applyKeys(ExecContext * ec, const KeyApplier & f, const IHaveParameters * ps) const { - BOOST_FOREACH(const IHaveParameters::Parameters::value_type & p, allParameters()) { + for (const IHaveParameters::Parameters::value_type & p : allParameters()) { f(p.first, p.second(ec)); } if (inherit) { - BOOST_FOREACH(const IHaveParameters::Parameters::value_type & p, ps->allParameters()) { + for (const IHaveParameters::Parameters::value_type & p : ps->allParameters()) { f(p.first, p.second(ec)); } } |