Skip to content

Commit dbc84c2

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#2197 from CaseyCarter/patch-3
Update move-constructors-and-move-assignment-operators-cpp.md
2 parents dd5c738 + d5338a7 commit dbc84c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/cpp/move-constructors-and-move-assignment-operators-cpp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,15 +241,15 @@ In MemoryBlock(size_t). length = 25.
241241
In MemoryBlock(MemoryBlock&&). length = 25. Moving resource.
242242
In ~MemoryBlock(). length = 0.
243243
In MemoryBlock(size_t). length = 75.
244+
In MemoryBlock(MemoryBlock&&). length = 75. Moving resource.
244245
In MemoryBlock(MemoryBlock&&). length = 25. Moving resource.
245246
In ~MemoryBlock(). length = 0.
246-
In MemoryBlock(MemoryBlock&&). length = 75. Moving resource.
247247
In ~MemoryBlock(). length = 0.
248248
In MemoryBlock(size_t). length = 50.
249249
In MemoryBlock(MemoryBlock&&). length = 50. Moving resource.
250-
In MemoryBlock(MemoryBlock&&). length = 50. Moving resource.
251-
In operator=(MemoryBlock&&). length = 75.
252-
In operator=(MemoryBlock&&). length = 50.
250+
In MemoryBlock(MemoryBlock&&). length = 25. Moving resource.
251+
In MemoryBlock(MemoryBlock&&). length = 75. Moving resource.
252+
In ~MemoryBlock(). length = 0.
253253
In ~MemoryBlock(). length = 0.
254254
In ~MemoryBlock(). length = 0.
255255
In ~MemoryBlock(). length = 25. Deleting resource.

0 commit comments

Comments
 (0)