summaryrefslogtreecommitdiff
path: root/src/analysis/function.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-11 17:02:19 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-11 17:49:30 +0300
commit863ede59a63ea38e98960659ab98da7531046783 (patch)
tree693ecf2fa3e4bf75d8ead77ebe43a2a8b82829ee /src/analysis/function.h
parent69537789ddcdc659da19bc560afc23b5b3d8156b (diff)
downloadparanucker-863ede59a63ea38e98960659ab98da7531046783.tar.gz
paranucker-863ede59a63ea38e98960659ab98da7531046783.tar.bz2
paranucker-863ede59a63ea38e98960659ab98da7531046783.tar.xz
paranucker-863ede59a63ea38e98960659ab98da7531046783.zip
Change how node analysers getting information about current tasks.
Now two variables one const for input data, and second for output data.
Diffstat (limited to 'src/analysis/function.h')
-rw-r--r--src/analysis/function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/function.h b/src/analysis/function.h
index 9ff3e0f..c18e9a9 100644
--- a/src/analysis/function.h
+++ b/src/analysis/function.h
@@ -29,7 +29,7 @@ struct WalkItem;
namespace Analysis
{
- WalkItem analyseFunction(FunctionDeclNode *node, WalkItem wi);
+ void analyseFunction(FunctionDeclNode *node, const WalkItem &wi, WalkItem &wo);
void getFunctionArgTypes(FunctionDeclNode *node,
std::vector<TypeNode*> &arr);