diff options
Diffstat (limited to 'project2/common/checkHost.cpp')
-rw-r--r-- | project2/common/checkHost.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/project2/common/checkHost.cpp b/project2/common/checkHost.cpp index dedea85..a900d7a 100644 --- a/project2/common/checkHost.cpp +++ b/project2/common/checkHost.cpp @@ -1,7 +1,6 @@ #include <pch.hpp> #include "checkHost.h" #include "execContext.h" -#include <boost/foreach.hpp> CheckHost::CheckHost(ScriptNodePtr s) : CommonObjects(s) @@ -17,7 +16,7 @@ void CheckHost::runChecks(ExecContext * ec) const { loadScriptComponents(); - BOOST_FOREACH(const Checks::value_type & pc, checks) { + for (const Checks::value_type & pc : checks) { if (!pc->performCheck(ec)) { ec->logMessage(false, pc->group(ec), pc->message(ec)); throw CheckFailure(pc); |