Specifications
700 CodeView Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 700 of 16 Printed: 10/09/00 02:49 PM
CAN0059 left operand is class not a function name
The left operand of a function call was a class name and could not be resolved to a
function call. This error can be caused by omitting the name of a member function in an
expression.
CAN0060 register is not available
An expression specified a register that cannot be used.
This error can be caused by trying to access a register that does not exist on the machine
running CodeView, for example, accessing 80386-specific registers on an 8088-based
machine.
CAN0061 function nesting depth exceeded
The expression contains a function nesting depth greater than the limit.
The expression should be modified to reduce the nesting depth.
CAN0062 constructor calls not supported
An expression made a call to a constructor.
Expressions cannot make explicit calls to constructors or make conversions that require
a call to a constructor.
CXX0063 overloaded operator -> not supported
The expression used an overloaded class member access operator (->).
CXX0064 can’t set breakpoint on bound virtual member function
A breakpoint was set on a virtual member function through a pointer to an object, such
as:
pClass->vfunc( int );
A breakpoint can be set on a virtual function by entering the class, such as:
Class::vfunc( int );
CodeView Error Messages
CV0000 no error; NOERROR; No Error Condition
You should not normally receive this error message since CV0000 indicates that no
error occurred.