Copyright Digital Equipment Corp. All rights reserved.

CLASSNOINIT

Message        <Context> the struct or union object "<name>" is
               uninitialized and has a const member.

Description    An object of struct or union type has a const member
               and has not been initialized.  This might not have
               been what you intended.  HP recommends that you
               initialize all objects with the const attribute.  The
               missing initializer will make this an invalid
               declaration in C++.

User Action    Initialize the struct or union object.