aboutsummaryrefslogtreecommitdiff
path: root/exec.h
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-06-23 16:51:07 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-06-23 20:27:40 +0900
commitffc52c3c5bed9d696d0296c1674d2e75460bef40 (patch)
tree7364bea9749e3de9fcf308b9c4b825e7425b881a /exec.h
parent9042b995db7f0b9499e0c3087269505e5e817a58 (diff)
downloadkati-ffc52c3c5bed9d696d0296c1674d2e75460bef40.tar.gz
[C++] Let target specific variable have its own scope
Diffstat (limited to 'exec.h')
-rw-r--r--exec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/exec.h b/exec.h
index fbbd75e..94ff691 100644
--- a/exec.h
+++ b/exec.h
@@ -20,8 +20,8 @@
using namespace std;
class DepNode;
-class Vars;
+class Evaluator;
-void Exec(const vector<DepNode*>& roots, Vars* vars);
+void Exec(const vector<DepNode*>& roots, Evaluator* ev);
#endif // EXEC_H_