diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-01 11:29:57 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-01 11:29:57 -0600 |
commit | f7c9c6e95f5a7333db5cef9d92c6c3438adbd6ee (patch) | |
tree | fb1f71863457aae8be68724d18d752437d6c19d1 /include/chillAST/chillAST_node.hh | |
parent | 2028f3ddc680b3af6476ace8840d6bcc85b88d73 (diff) | |
download | chill-f7c9c6e95f5a7333db5cef9d92c6c3438adbd6ee.tar.gz chill-f7c9c6e95f5a7333db5cef9d92c6c3438adbd6ee.tar.bz2 chill-f7c9c6e95f5a7333db5cef9d92c6c3438adbd6ee.zip |
fixes
Diffstat (limited to 'include/chillAST/chillAST_node.hh')
-rw-r--r-- | include/chillAST/chillAST_node.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/chillAST/chillAST_node.hh b/include/chillAST/chillAST_node.hh index ce099e8..dcaa9d0 100644 --- a/include/chillAST/chillAST_node.hh +++ b/include/chillAST/chillAST_node.hh @@ -83,7 +83,7 @@ public: virtual CHILLAST_NODE_TYPE getType() { return CHILLAST_NODE_UNKNOWN; }; //! Get the human readable type name - const char *getTypeString() { return ChillAST_Node_Names[getType()]; }; + const char *getTypeString(); bool isSourceFile() { return (getType() == CHILLAST_NODE_SOURCEFILE); }; @@ -300,7 +300,6 @@ public: //! gather both scalar and array references virtual void gatherDeclRefExprs(std::vector<chillAST_DeclRefExpr *> &refs); - virtual void gatherVarUsage(std::vector<chillAST_VarDecl *> &decls); //! Gather all variable that is used as a lefthand side operand |