summaryrefslogtreecommitdiff
path: root/project2/common/checkHost.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2013-07-05 00:01:26 +0000
committerrandomdan <randomdan@localhost>2013-07-05 00:01:26 +0000
commit530d921225b019130585667d91bad25194179310 (patch)
tree6f3a750f79ad26047ff5322522219798d19aa64c /project2/common/checkHost.h
parentMove remaining options out of environment (diff)
downloadproject2-530d921225b019130585667d91bad25194179310.tar.bz2
project2-530d921225b019130585667d91bad25194179310.tar.xz
project2-530d921225b019130585667d91bad25194179310.zip
Massive refactor to remove the appEngine and environment complication and instead have an execution context that's passed around from the original call site
Diffstat (limited to 'project2/common/checkHost.h')
-rw-r--r--project2/common/checkHost.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/common/checkHost.h b/project2/common/checkHost.h
index edc2cd8..f404d9e 100644
--- a/project2/common/checkHost.h
+++ b/project2/common/checkHost.h
@@ -18,7 +18,7 @@ class CheckHost : virtual public CommonObjects {
CheckHost(ScriptNodePtr script);
~CheckHost();
- void runChecks() const;
+ void runChecks(ExecContext *) const;
typedef ANONORDEREDSTORAGEOF(Check) Checks;
Checks checks;