Comeau, g++ (ideone) and EDG accept the following code without diagnostic. Visual C++ compiles successfully, albeit with warning C4624.

class indestructible_base
{
  ~indestructible_base();
};

class T : indestructible_base
{
public:
  //T() {}
};

int main(void) { new T(); }

Uncomment the constructor and it no longer compiles.

Perhaps it's the rule that if an exception occurs inside the constructor, subobjects must be destroyed? Seems odd, since the body is empty and can't cause an exception. Even so, add an exception-specification vouching for the fact that no exception will be thrown (throw() or noexcept) and it makes no difference.

Why does a user-declared constructor require access to the base class destructor, while an automatically-generated constructor does not?

This question was inspired by: Preventing a Destructor from Running in C++

link|improve this question

67% accept rate
4  
FWIW, Clang rejects the program in both cases in C++0x mode, but behaves like g++ in c++98 modes. – Justin Feb 3 at 3:53
when you declare ~indestructible_base() as public, the compiler does not complain. – haberdar Feb 3 at 4:05
1  
This may have to do with exceptions. If there is a user-defined constructor, there is no guarantee that it won't throw. If it throws, the base subobject needs to be destroyed. But I may be wrong. - It also won't compile even without the user-defined constructor if you have a non-trivial member, such as std::string. (Again, that could throw in the compiler-generated constructor.) – visitor Feb 3 at 10:12
definitely the wrong tag: accessibility this is not. – Norman B. Robins0n Feb 3 at 15:44
@Norman: Sorry about that, the correct tag was access-modifiers. – Ben Voigt Feb 3 at 16:18
show 3 more comments
feedback

2 Answers

I suspect that this might be compiler-specific behavior. Here's my theory:

Because (in this particular case) an implicitly-defined T() is a trivial constructor (as defined in 12.1(5) of the standard), the compiler doesn't even attempt to generate a body for T(). Since there's no ctor body, there are no exceptions that could possibly be generated during "construction" (of which there isn't any, really), so there's no need to generate a dtor call, and so no need to generate a dtor body, only to find out that the base class's dtor is private.

But as soon as T() becomes non-trivial (even if it remains implicitly-defined), a ctor body must be generated, and you get the error. Something as simple as adding a member to class T that has a user-defined constructor would make the implicitly-defined T() become non-trivial.

A separate, but related, issue is that new T() doesn't generate a dtor call (since you don't have a corresponding delete anywhere). In contrast, if I just replace new T() with T dummy in your code, then I get the following from gcc, suggesting that it's now doing the full check for dtor accessibility (as a consequence of having to generate a dtor call):

test.cpp: In destructor 'T::~T()':
test.cpp:3: error: 'indestructible_base::~indestructible_base()' is private
test.cpp:7: error: within this context
test.cpp: In function 'int main()':
test.cpp:12: note: synthesized method 'T::~T()' first required here
test.cpp:12: warning: unused variable 'dummy'
link|improve this answer
Right. But a noexcept user-defined constructor also can't throw, so why does that fail? – Ben Voigt Feb 3 at 19:22
@BenVoigt. It seems jjlin is correct. Look again at 12.1.5. Seems to not have anything to do with exceptions, but instead if the constructor is 'trivial' or not. For a constructor to be trivial all the members and bases must have trivial constructors (+ other requirements). (indestructible_base could as well be a member.) No destructor is generated in case of a trivial constructor. Also, declaring a constructor makes it non-trivial (except when using = default in c++11). The code is fine because nobody called that (non existing) destructor. Also note the comment jjlin makes about delete; – Johan Lundberg Feb 6 at 23:30
Looking through the gcc source, I get the impression that whether the ctor throws or not isn't checked. Of course, the source is pretty complex, so I can't say for sure, but it may simply be that the compiler writers just take the conservative approach and generate a dtor if they have to generate a ctor. – jjlin Feb 7 at 6:42
feedback

Well, if the automatically-generated constructor calls a possibly-throwing constructor, then it will give the same access error.

#include <string>

class indestructible_base
{
  ~indestructible_base();
  std::string s; // <------ this may throw
};

class T : indestructible_base
{
public:
  //T() {}
};

int main(void) { new T(); }

So I guess exceptions is the answer. In ANSI ISO IEC 14882 the only noexcept(true) string constructor is the move constructor. I believe this should compile but ideone says no.

link|improve this answer
But if a defaulted non-throwing constructor is permitted, should not an explicit throw() or noexcept constructor also be permitted? – Ben Voigt Feb 3 at 17:15
I expect this should compile (but not link) fine, although ideone doesn't like the "noexcept" and I don't have a C++11 compiler to hand. – spraff Feb 3 at 17:21
FWIW, Microsoft DevStudio v10 and Microsoft DevStudio v11 dev preview can compile this code with or without the T() being defined. – Vorlauf Feb 3 at 18:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.