diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 17:01:18 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 17:01:18 +0100 |
commit | efe58ee75044352809cc755fdb46fcdda8a7ad02 (patch) | |
tree | 1d72ba2f9d28875e57cfa455dd7eb51de206aba5 /environment.cpp | |
parent | 91e5244add56bf284142ba332931377622e876c6 (diff) |
Make local functions static
Diffstat (limited to 'environment.cpp')
-rw-r--r-- | environment.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/environment.cpp b/environment.cpp index cb4b0e4..e36031b 100644 --- a/environment.cpp +++ b/environment.cpp @@ -52,7 +52,7 @@ AST Environment::get(const Name &name){ // ------------------------------------------------------------ -void indexReplace(AST &ast,const Name &name,Index index){ +static void indexReplace(AST &ast,const Name &name,Index index){ if(ast.quoted){ return; } @@ -86,7 +86,7 @@ void indexReplace(AST &ast,const Name &name,Index index){ } -void indexify(AST &ast){ +static void indexify(AST &ast){ if(ast.quoted){ return; } @@ -113,7 +113,7 @@ void indexify(AST &ast){ } } -void singlify(AST &ast){ +static void singlify(AST &ast){ if(ast.quoted){ return; } @@ -169,7 +169,7 @@ AST Environment::run(const AST &astinput){ } -void recursiveFindLevel(AST &ast,Index index,vector<pair<AST*,Index>> &nodes){ +static void recursiveFindLevel(AST &ast,Index index,vector<pair<AST*,Index>> &nodes){ if(ast.quoted){ return; } @@ -200,7 +200,7 @@ void recursiveFindLevel(AST &ast,Index index,vector<pair<AST*,Index>> &nodes){ } -void increaseFree(AST &ast,Index amount,Index fromIndex){ +static void increaseFree(AST &ast,Index amount,Index fromIndex){ if(ast.quoted){ return; } @@ -231,7 +231,7 @@ void increaseFree(AST &ast,Index amount,Index fromIndex){ } -bool hasFree(AST &ast,Index fromIndex){ +static bool hasFree(AST &ast,Index fromIndex){ if(ast.quoted){ return false; } @@ -329,12 +329,13 @@ bool Environment::betareduce(AST &ast,i64 depth){ } -void etareduce(AST &ast){ +static bool etareduce(AST &ast){ if(ast.quoted){ - return; + return false; } // do nothing yet + return false; } |