Move semantics is the C++11 feature that allows a copy operation to be replaced by a more efficient "move" when the source object is an rvalue (typically a temporary)

learn more… | top users | synonyms

4
votes
1answer
253 views

Why does this call the copy constructor, not the move constructor?

I have a class, PlayerInputComponent: .h: class PlayerInputComponent { public: PlayerInputComponent(PlayerMoveComponent& parentMoveComponent_, std::unique_ptr<IRawInputConverter> ...
2
votes
1answer
156 views

std::vector resizing using unsafe move when no copy is provided

I made a class to encapsulate some functionality from OpenGL textures, my requirements are pretty simple so I don't need much more than being able to control the texture data and types. My class is ...
1
vote
1answer
346 views

Efficient arithmetic operator overloading in C++11

I have a POD struct that has a number of members, and I would like to know the most efficient way in C++11 to implement its arithmetic operators. This struct is meant to be used in place of ...
0
votes
1answer
78 views

variadic template with perfect forwarding not optimised for move semantics

Hi all I having an issue with the move ctor not being called on a variadic add template I have created. #include <iostream> #include <algorithm> #include <functional> class ...
1
vote
0answers
52 views

move local struct from callee to caller without reallocation in fields

I have the allocator eallocator, that manages a memory with execute permission. In C++11 std::vector have std::vector::data() member function, that returns pointer to the underlying array of elements. ...
0
votes
0answers
48 views

intel icpc 13.0 cannot do move assignment operator?

the following simple code struct my_struct { double X; my_struct& operator=(my_struct&&) = default; }; fails to compile with icpc -std=c++11, giving the error test.cc(5): error: ...