In order to disable copying of my class I'm suppose to declare as private but not define operator=(const MyClass&) and MyClass(const MyClass&) - do I have to also disable move ctor for this class?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
It is still up to discussion whether move constructors will be implicitly generated (and when). See this PDF by Stroustrup from 2010-10-17 with the subtitle Should move operations be generated by default? BTW, in C++0x you can
|
|||||
|
|
Quoting from the VS 2010 documentation:
So for VS 2010, it's not necessary to hide that. They don't specifically discuss default move assignment operators, but I assume they won't generate one, either. |
|||
|
|
