diff options
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 |