C++ question

Dec 5, 2015 at 9:22am
I'm reading SFML's audio module and saw this sentence

By using our asset manager, we can be sure that our resource will not be accidentally
deleted or moved in memory


what does "moved in memory" means?

TIA for answers
Dec 5, 2015 at 12:30pm
move constructors for example move data from one chunk of memory to another.
Dec 5, 2015 at 1:12pm
@codekiddy
hi thanks for the reply.
could that also mean operator=()?
Dec 5, 2015 at 1:21pm
note that operator=() can be an assignment and move assignment operator.

so if operator=() is a move assignment operator then yes.

anything that involves move semantics, moves data in memory.
Dec 5, 2015 at 2:44pm
i see thanks, asnwered all my needs
thank you @codekiddy
Topic archived. No new replies allowed.