Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was receiving a strange error from gcc and cannot figure out why. I made the following example code to make the problem more clear. Basically, there is a class defined, for which I make its copy constructor and copy assignment operator private, to prevent calling them accidentally.

#include <vector>
#include <cstdio>
using std::vector;

class branch 
{
public:
  int th;

private:
  branch( const branch& other );
  const branch& operator=( const branch& other );

public:

  branch() : th(0) {}

  branch( branch&& other )
  {
    printf( "called! other.th=%d\n", other.th );
  }

  const branch& operator=( branch&& other )
  {
    printf( "called! other.th=%d\n", other.th );
    return (*this);
  }

};



int main()
{
  vector<branch> v;
  branch a;
  v.push_back( std::move(a) );

  return 0;
}

I expect this code to compile, but it fails with gcc. Actually gcc complains that "branch::branch(const branch&) is private", which as I understand shouldn't be called.

The assignment operator works, since if I replace the body of main() with

branch a;
branch b;
b = a;

It will compile and run as expected.

Is this a correct behavior of gcc? If so, what's wrong with the above code? Any suggestion is helpful to me. Thank you!

share|improve this question
Works for me with gcc-4.6.1. – n.m. Jul 15 '12 at 1:15
I was using gcc 4.7.1-2. I'll try 4.6.1. Thanks! – BreakDS Jul 15 '12 at 2:25
1  
By my reading of N3242, this code should be allowed (but if the move constructor does throw an exception, the program has Undefined Behavior). – aschepler Jul 15 '12 at 13:41
I tried to compile with different version of gcc. Confirmed that it works with gcc 4.6.3 and 4.6.1. – BreakDS Jul 15 '12 at 15:54
GCC didn't check for this in older versions but as of 4.7 it is fully compliant in this regard, and that's why you've run into this "issue". – Lightness Races in Orbit Nov 17 '12 at 23:13

1 Answer

up vote 11 down vote accepted

Try adding "noexcept" to the declaration of the move constructor.

I can't quote the standard, but recent versions of gcc appear to require either that the copy constructor be public or that the move constructor be declared "noexcept". Regardless of the "noexcept" qualifier, if you make the copy constructor public, it will behave as you expect at run-time.

share|improve this answer
3  
If he makes the copy constructor public then the object will be copied, which is clearly what he's trying to avoid. In any case, making the move constructor noexcept is the correct solution here, so +1. – ildjarn Jul 15 '12 at 2:40
Thank you to both of you, noexcept and public copy constructor are both correct. However, it is a little bit counter-intuitive that copy constructor cannot be made private. – BreakDS Jul 15 '12 at 16:06
@BreakDS : Copy constructor can be made private (assuming a correct standard library implementation) if the move constructor is noexcept. – ildjarn Jul 15 '12 at 17:59
Yes, I see that if the copy constructor is private and the move constructor is public, there might be problems. For people who is not familiar with noexcept keyword as me, can take a look at this: Using noexcept and this Exceptionally Moving – BreakDS Jul 15 '12 at 20:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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