public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/31397]  New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
@ 2007-03-30  9:49 Thomas dot Lange at sun dot com
  2007-03-30 23:43 ` [Bug c++/31397] " fang at csl dot cornell dot edu
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Thomas dot Lange at sun dot com @ 2007-03-30  9:49 UTC (permalink / raw)
  To: gcc-bugs

When trying to build the OOo code warning-free we turned all useful warnings on
and get rid of them.
But there is one warning that would be really useful missing. It is not
required for code correctness or safety at all, but it would be most useful to
have better understandable code.

What I/we at OOo would like to have is a warning when a when a function in a
derived class is overloaded without specifing 'virtual'. 

This would allow to identify all the cases where this is missing and in the end
it would be clear just be looking at the specific declaration of a class which
functions are virtual and which not. Right now in our sometimes very old code
it is quite troublesome to always go up in the class hierarchy in order to
check this.

Example:
class A
{
  A();
  virtual ~A();
  virtual int f( int x );
};

class B : public A
{
  B( int y );
  ~B();
  int f( int x );
};

It would be nice if there would be warnings for ~B and f not using the
'virtual' keyword. Together with the switch to treat warnings as errors this
would help to produce better understandable code.


-- 
           Summary: Useful compiler warning missing (virtual functions in
                    derived classes used without 'virtual')
           Product: gcc
           Version: 3.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Thomas dot Lange at sun dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
@ 2007-03-30 23:43 ` fang at csl dot cornell dot edu
  2007-04-07 23:58 ` bangerth at dealii dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: fang at csl dot cornell dot edu @ 2007-03-30 23:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from fang at csl dot cornell dot edu  2007-03-31 00:43 -------
Do you mean -Woverloaded-virtual?  (see man page)
The diagostic reports when a derived class's method 'hides' the base class's.  


-- 

fang at csl dot cornell dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fang at csl dot cornell dot
                   |                            |edu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
  2007-03-30 23:43 ` [Bug c++/31397] " fang at csl dot cornell dot edu
@ 2007-04-07 23:58 ` bangerth at dealii dot org
  2009-07-08 10:23 ` Thomas dot Lange at sun dot com
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: bangerth at dealii dot org @ 2007-04-07 23:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from bangerth at dealii dot org  2007-04-08 00:58 -------
(In reply to comment #1)
> Do you mean -Woverloaded-virtual?  (see man page)
> The diagostic reports when a derived class's method 'hides' the base class's.  

No, he simply wants to know that "it doesn't matter from a semantic point,
but just to make the declaration clearer, why don't you add a 'virtual'
to your destructor and int f(int) functions, because they are implicitly
virtual anyway'.

Confirmed.

W.


-- 

bangerth at dealii dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bangerth at dealii dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |diagnostic
   Last reconfirmed|0000-00-00 00:00:00         |2007-04-08 00:58:22
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
  2007-03-30 23:43 ` [Bug c++/31397] " fang at csl dot cornell dot edu
  2007-04-07 23:58 ` bangerth at dealii dot org
@ 2009-07-08 10:23 ` Thomas dot Lange at sun dot com
  2009-07-08 10:30 ` Thomas dot Lange at sun dot com
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Lange at sun dot com @ 2009-07-08 10:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from Thomas dot Lange at sun dot com  2009-07-08 10:23 -------
(In reply to comment #2)
> why don't you add a 'virtual'
> to your destructor and int f(int) functions, because they are implicitly
> virtual anyway'.

That is exactly the point this is about!
I want a way so the compiler enforces to add 'virtual' to ~B and B::f, and thus
help to write better understandable code.

This is in order for large derived trees or a big source code. It is for the
one looking at the declaration (and not anymore or not at all familiar with the
code!) to not miss that those functions are virtual.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (2 preceding siblings ...)
  2009-07-08 10:23 ` Thomas dot Lange at sun dot com
@ 2009-07-08 10:30 ` Thomas dot Lange at sun dot com
  2009-07-13 11:48 ` jwakely dot gcc at gmail dot com
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Lange at sun dot com @ 2009-07-08 10:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from Thomas dot Lange at sun dot com  2009-07-08 10:30 -------
Side note: Of course having such an option is much more useful where the
declaration of class A and B are in different header files and probably even in
different modules. 
(For example: such cases are often found in the OpenOffice.org source code...
^_-)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (3 preceding siblings ...)
  2009-07-08 10:30 ` Thomas dot Lange at sun dot com
@ 2009-07-13 11:48 ` jwakely dot gcc at gmail dot com
  2009-07-13 11:57 ` Thomas dot Lange at sun dot com
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jwakely dot gcc at gmail dot com @ 2009-07-13 11:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jwakely dot gcc at gmail dot com  2009-07-13 11:48 -------
(In reply to comment #0)
> 
> What I/we at OOo would like to have is a warning when a when a function in a
> derived class is overloaded without specifing 'virtual'. 

To avoid further misunderstanding: you mean overridden, not overloaded.

This seems like the sort of thing that could be put in a plugin or other static
analysis tool rather than the compiler, because it warns about a preference in
coding style.


-- 

jwakely dot gcc at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jwakely dot gcc at gmail dot
                   |                            |com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (4 preceding siblings ...)
  2009-07-13 11:48 ` jwakely dot gcc at gmail dot com
@ 2009-07-13 11:57 ` Thomas dot Lange at sun dot com
  2009-07-13 12:00 ` rguenth at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Lange at sun dot com @ 2009-07-13 11:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from Thomas dot Lange at sun dot com  2009-07-13 11:56 -------
(In reply to comment #5)

No. I do mean overloaded!

It might be nice to have a warning for overloading virtual functions of base
classes as well. But my point is that the compiler should help to enforce that
every virtual function has the 'virtual' keyword set in its declaration.
Thus effectively removing those implicit virtual functions that are allowed in
C++. 
The goal is: Either a function should be explicitly declared virtual in its
declaration or not be virtual at all.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (5 preceding siblings ...)
  2009-07-13 11:57 ` Thomas dot Lange at sun dot com
@ 2009-07-13 12:00 ` rguenth at gcc dot gnu dot org
  2009-07-13 12:02 ` Thomas dot Lange at sun dot com
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-07-13 12:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rguenth at gcc dot gnu dot org  2009-07-13 11:59 -------
Your example is overriding A::f, not overloading it.  Overloading would be

  int f(int x, int y);

do you want a warning for that as well?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (6 preceding siblings ...)
  2009-07-13 12:00 ` rguenth at gcc dot gnu dot org
@ 2009-07-13 12:02 ` Thomas dot Lange at sun dot com
  2009-07-13 12:07 ` Thomas dot Lange at sun dot com
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Lange at sun dot com @ 2009-07-13 12:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from Thomas dot Lange at sun dot com  2009-07-13 12:02 -------
(In reply to comment #6)

Ooops... Sorry!
I just was told that I confused those two terms. >_<
(That might happen to non-native speakers)
My apologies!
Yes you are correct. It is about overwriting.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (7 preceding siblings ...)
  2009-07-13 12:02 ` Thomas dot Lange at sun dot com
@ 2009-07-13 12:07 ` Thomas dot Lange at sun dot com
  2009-07-13 16:47 ` jwakely dot gcc at gmail dot com
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Lange at sun dot com @ 2009-07-13 12:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from Thomas dot Lange at sun dot com  2009-07-13 12:07 -------
(In reply to comment #6)
I'm not concerned about that case.

Thank you for your time!


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (8 preceding siblings ...)
  2009-07-13 12:07 ` Thomas dot Lange at sun dot com
@ 2009-07-13 16:47 ` jwakely dot gcc at gmail dot com
  2009-07-21 10:51 ` jwakely dot gcc at gmail dot com
  2009-08-11 14:16 ` jwakely dot gcc at gmail dot com
  11 siblings, 0 replies; 13+ messages in thread
From: jwakely dot gcc at gmail dot com @ 2009-07-13 16:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jwakely dot gcc at gmail dot com  2009-07-13 16:46 -------
(In reply to comment #8)
> 
> Ooops... Sorry!
> I just was told that I confused those two terms. >_<
> (That might happen to non-native speakers)
> My apologies!
> Yes you are correct. It is about overwriting.

Overriding :-)

I'm using the terminology of the C++ standard, but I do have the advantage that
it's written in my native language


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (9 preceding siblings ...)
  2009-07-13 16:47 ` jwakely dot gcc at gmail dot com
@ 2009-07-21 10:51 ` jwakely dot gcc at gmail dot com
  2009-08-11 14:16 ` jwakely dot gcc at gmail dot com
  11 siblings, 0 replies; 13+ messages in thread
From: jwakely dot gcc at gmail dot com @ 2009-07-21 10:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from jwakely dot gcc at gmail dot com  2009-07-21 10:51 -------
There is a lot of overlap between this warning and the functionality described
by http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2852.html (which
will be updated by N2928 in a couple of weeks.)

It might make sense to add attributes rather than a -W switch, as that might
make it easier to implement the C++0x [[base_check]] and [[override]]
attributes.  It would also be easier for user code to transition from GNU-style
__attribute__((override)) to C++0x-style [[override]]


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug c++/31397] Useful compiler warning missing (virtual functions in derived classes used without 'virtual')
  2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
                   ` (10 preceding siblings ...)
  2009-07-21 10:51 ` jwakely dot gcc at gmail dot com
@ 2009-08-11 14:16 ` jwakely dot gcc at gmail dot com
  11 siblings, 0 replies; 13+ messages in thread
From: jwakely dot gcc at gmail dot com @ 2009-08-11 14:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jwakely dot gcc at gmail dot com  2009-08-11 14:16 -------
revised 'Explicit Virtual Function Overrides' paper:
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2928.htm


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31397


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2009-08-11 14:16 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-30  9:49 [Bug c++/31397] New: Useful compiler warning missing (virtual functions in derived classes used without 'virtual') Thomas dot Lange at sun dot com
2007-03-30 23:43 ` [Bug c++/31397] " fang at csl dot cornell dot edu
2007-04-07 23:58 ` bangerth at dealii dot org
2009-07-08 10:23 ` Thomas dot Lange at sun dot com
2009-07-08 10:30 ` Thomas dot Lange at sun dot com
2009-07-13 11:48 ` jwakely dot gcc at gmail dot com
2009-07-13 11:57 ` Thomas dot Lange at sun dot com
2009-07-13 12:00 ` rguenth at gcc dot gnu dot org
2009-07-13 12:02 ` Thomas dot Lange at sun dot com
2009-07-13 12:07 ` Thomas dot Lange at sun dot com
2009-07-13 16:47 ` jwakely dot gcc at gmail dot com
2009-07-21 10:51 ` jwakely dot gcc at gmail dot com
2009-08-11 14:16 ` jwakely dot gcc at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).