diff options
Diffstat (limited to 'include/chillAST/chillAST_node.hh')
-rw-r--r-- | include/chillAST/chillAST_node.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/chillAST/chillAST_node.hh b/include/chillAST/chillAST_node.hh index ed155b2..808a62c 100644 --- a/include/chillAST/chillAST_node.hh +++ b/include/chillAST/chillAST_node.hh @@ -38,7 +38,7 @@ public: //! the type of this current node virtual CHILLAST_NODE_TYPE getType() {return CHILLAST_NODE_UNKNOWN;}; //! the precedence of the current node, 0 being the highest - virtual int getPrec() {return INT16_MAX;} + virtual int getPrec() {return INT8_MAX;} bool isSourceFile() { return (getType() == CHILLAST_NODE_SOURCEFILE); }; |