*** empty log message ***

This commit is contained in:
David Rose 2000-10-13 20:25:17 +00:00
parent 5fd4272119
commit 08c0c9fea2

View File

@ -120,7 +120,7 @@ int DCClass::
get_num_inherited_fields() {
if (!_parents.empty()) {
// This won't work for multiple dclass inheritance.
return _parents.front()->get_num_fields() + get_num_fields();
return _parents.front()->get_num_inherited_fields() + get_num_fields();
}
return get_num_fields();
}