tweak comment

From-SVN: r30340
This commit is contained in:
Jason Merrill 1999-11-02 02:26:47 -05:00
parent bf279c4e1a
commit c4d6cee389
1 changed files with 4 additions and 2 deletions

View File

@ -3456,8 +3456,10 @@ finish_struct_1 (t)
if (DECL_MUTABLE_P (x) || TYPE_HAS_MUTABLE_P (type))
has_mutable = 1;
if (! pod_type_p (type) || TYPE_PTRMEM_P (type)
|| TYPE_PTRMEMFUNC_P (type))
if (! pod_type_p (type)
/* For some reason, pointers to members are POD types themselves,
but are not allowed in POD structs. Silly. */
|| TYPE_PTRMEM_P (type) || TYPE_PTRMEMFUNC_P (type))
non_pod_class = 1;
/* If any field is const, the structure type is pseudo-const. */