Skip to content

Commit bd5fde1

Browse files
authored
Merge pull request #2887 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to master to sync with https://github.com/MicrosoftDocs/cpp-docs (branch master)
2 parents 224e57d + dbc84c2 commit bd5fde1

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)