Library /sys$common/syshlp/dbg$help.hlb DEBUG, Messages, CALLINGNONSTATIC *Conan The Librarian (sorry for the slow response - running on an old VAX) |
calling non-static member function in a static fashion Facility: DEBUG, VMS Debugger Explanation: You are attempting to use the CALL command to call a non-static member function using a static syntax, eg. Class::Func. This may result in incorrect parameters being passed to the called routine, resulting in unpredictable results. User Action: Use a non-static syntax when calling the routine, eg. Obj.Func()
|