Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / C++
Article

BUG in Visual C++ access for destructors with virtual base classes

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
5 Apr 2000 62.4K   16   6
When inheriting from a virtual base class the access specifier for the destructor is ignored

Introduction

This bug appears in VC6 SP3, and possibly earlier versions as well.

When inheriting from a virtual base class the access specifier for the destructor is ignored

To demonstrate, if the word virtual is commented out as shown below in the declaration of class B, this program correctly produces the error message

xxx.cpp(28) : error C2248: 'B::~B' : cannot
access protected member declared in class 'B'
xxx.cpp(23) : see declaration of 'B::~B'

If the word virtual is un-commented then the program builds without error messages despite the destructor being declared private

The offending code

#include "stdafx.h"

class A {
protected:
    ~A() {}
};

class B : virtual public A {
private:
    ~B() {}
};

int main(int argc, char* argv[])
{
    B b;
    return 0;
}

As a bit of history, I am implementing some smart pointers and want to ensure that the smart-pointer target object cannot be created locally on the stack, nor do I want to be able to explicitly call delete on a pointer to such an object. Hence I want the destructor to be private. However, this fails (as shown above) when I am inheriting from a virtual base class.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralVC++ compiler bug Pin
isheu26-Aug-08 2:28
isheu26-Aug-08 2:28 
QuestionShould be virtual? Pin
AlexMarbus10-May-01 2:50
AlexMarbus10-May-01 2:50 
AnswerRe: Should be virtual? Pin
10-May-01 6:09
suss10-May-01 6:09 
GeneralBeside the point Pin
Roger Onslow10-Apr-00 15:45
Roger Onslow10-Apr-00 15:45 
GeneralC++ Compiler bug Pin
Member 112710-Apr-00 0:05
Member 112710-Apr-00 0:05 
GeneralC++ compiler BUG Pin
Alex Turc6-Apr-00 1:25
Alex Turc6-Apr-00 1:25 
I have tested this code and you are right

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.