diff options
Diffstat (limited to 'project2/iterate.cpp')
-rw-r--r-- | project2/iterate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/iterate.cpp b/project2/iterate.cpp index e7af8f1..55648eb 100644 --- a/project2/iterate.cpp +++ b/project2/iterate.cpp @@ -55,7 +55,7 @@ Iterate::execute() const void Iterate::executeChildren(bool errs) const { - BOOST_FOREACH(const SubNOEs::value_type & sq, (errs ? errorNOEs : normNOEs).get<bySOOrder>()) { + BOOST_FOREACH(const SubNOEs::value_type & sq, (errs ? errorNOEs : normNOEs)) { if (dynamic_cast<const RowProcessor *>(sq.get())) { sq->execute(); } |