X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fnodes%2Fpath.h;h=0c3334151c832c87e35b5871b5b6a0efb3ecc1ac;hb=d7e8a05960951d8ce67e36c587726a851e2f5165;hp=af6261f4c0bc9024736c5b93117f582a48c741e5;hpb=fa30e6adff1dea5d6b3903279ef024dd3bed043f;p=feisty_meow.git diff --git a/nucleus/library/nodes/path.h b/nucleus/library/nodes/path.h index af6261f4..0c333415 100644 --- a/nucleus/library/nodes/path.h +++ b/nucleus/library/nodes/path.h @@ -57,7 +57,7 @@ public: node *current() const; node *follow() const; //!< Returns the node specified by this path. - /*!< if the path is not valid, NIL is returned. */ + /*!< if the path is not valid, NULL_POINTER is returned. */ node *pop(); //!< returns the top node on the path stack. @@ -81,7 +81,7 @@ public: "to_follow" is set to one of the possible paths. */ node *operator [] (int index) const; - //!< returns the node stored at "index", or NIL if "index" is invalid. + //!< returns the node stored at "index", or NULL_POINTER if "index" is invalid. private: path_node_stack *_stack; //!< implementation of our pathway.