summaryrefslogtreecommitdiff
path: root/environment.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-11-20 17:01:18 +0100
committertomsmeding <tom.smeding@gmail.com>2016-11-20 17:01:18 +0100
commitefe58ee75044352809cc755fdb46fcdda8a7ad02 (patch)
tree1d72ba2f9d28875e57cfa455dd7eb51de206aba5 /environment.h
parent91e5244add56bf284142ba332931377622e876c6 (diff)
Make local functions static
Diffstat (limited to 'environment.h')
-rw-r--r--environment.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/environment.h b/environment.h
index 5776122..bc86efb 100644
--- a/environment.h
+++ b/environment.h
@@ -18,8 +18,9 @@ private:
unordered_map<string,AST> defs;
unordered_map<string,Hook> hooks;
- void reduce(AST &ast,i64 depth=0);
+ bool reduce(AST &ast,i64 depth=0);
bool betareduce(AST &ast,i64 depth);
+ bool resolve(AST &ast);
public:
void load(const Environment &other);