GCC 4.5 doesn't let me do this:

class foo {
public:
    foo() = default;

private:
    foo(foo const&) = default;
    foo& operator=(foo const&) = default;
};

It complains that:

error: 'foo::foo(const foo&)' declared with non-public access cannot be defaulted in the class body
error: 'foo& foo::operator=(const foo&)' declared with non-public access cannot be defaulted in the class body

However, GCC 4.6 lets me do it. Which one is correct?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

There is nothing in N3291 that says you cannot declare something private and default. Note that this was a change to the specification, in section 8.4.2, paragraph 2; earlier versions said that they must be public.

link|improve this answer
Sometimes it's just nice to be default in private... – Kerrek SB Aug 29 '11 at 0:39
3  
"Walking on water and developing software from a specification are easy if both are frozen." -- E. Berard. – Matthieu M. Aug 29 '11 at 6:27
feedback

Your Answer

 
or
required, but never shown

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