--- parser3/src/include/pa_stack.h 2005/03/16 14:37:51 1.23 +++ parser3/src/include/pa_stack.h 2006/04/09 13:38:47 1.25 @@ -1,14 +1,14 @@ /** @file Parser: stack class decl. - Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_STACK_H #define PA_STACK_H -static const char * const IDENT_STACK_H="$Date: 2005/03/16 14:37:51 $"; +static const char * const IDENT_STACK_H="$Date: 2006/04/09 13:38:47 $"; #include "pa_config_includes.h" #include "pa_array.h" @@ -21,7 +21,7 @@ public: void push(T item) { if(ftopcount()) // cell is already allocated? - put(ftop, item); // use it + this->put(ftop, item); // use it else *this+=item; // append it ftop++;