diff options
| author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-28 17:01:20 +0000 |
|---|---|---|
| committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-28 17:01:20 +0000 |
| commit | c49006bcd0deb21ceca25ffee2e6220d861cae49 (patch) | |
| tree | ce5870aff037c16b158c02fb51ded76fdc412d23 | |
| parent | 318a728f904732ccea8f616d2694af282ccfc848 (diff) | |
| download | ppe42-gcc-c49006bcd0deb21ceca25ffee2e6220d861cae49.tar.gz ppe42-gcc-c49006bcd0deb21ceca25ffee2e6220d861cae49.zip | |
PR c++/15214
* class.c (finish_struct_1): Warn only if the dtor is non-private or
the class has friends.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82366 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/cp/class.c | 11 |
2 files changed, 16 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 92b10d062d0..b65da55ef54 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2004-05-20 Tom Marshall <tmarshall@real.com> + + PR c++/15214 + * class.c (finish_struct_1): Warn only if the dtor is non-private or + the class has friends. + 2004-05-27 Adam Nemet <anemet@lnxw.com> PR c++/12883 diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 47c60e7851d..0fdd748a7af 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -5185,7 +5185,16 @@ finish_struct_1 (tree t) if (warn_nonvdtor && TYPE_POLYMORPHIC_P (t) && TYPE_HAS_DESTRUCTOR (t) && DECL_VINDEX (TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (t), 1)) == NULL_TREE) - warning ("`%#T' has virtual functions but non-virtual destructor", t); + + { + tree dtor = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (t), 1); + + /* Warn only if the dtor is non-private or the class has friends */ + if (!TREE_PRIVATE (dtor) || + (CLASSTYPE_FRIEND_CLASSES (t) || + DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))) + warning ("%#T' has virtual functions but non-virtual destructor", t); + } complete_vars (t); |

