--- parser3/src/main/execute.C 2001/07/13 12:13:50 1.176 +++ parser3/src/main/execute.C 2001/07/13 12:15:37 1.177 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) */ -static const char *RCSId="$Id: execute.C,v 1.176 2001/07/13 12:13:50 parser Exp $"; +static const char *RCSId="$Id: execute.C,v 1.177 2001/07/13 12:15:37 parser Exp $"; #include "pa_opcode.h" #include "pa_array.h" @@ -849,7 +849,7 @@ const String *Request::execute_virtual_m const String *Request::execute_nonvirtual_method(VStateless_class& aself, const String& method_name, bool return_cstr) { - if(Value *value=aself.get_method(method_name)) + if(const Method *method=aself.get_method(method_name)) return execute_method(aself, *method, return_cstr); return 0;