We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cfb7a6 commit 4156a67Copy full SHA for 4156a67
test/regressions.cpp
@@ -278,6 +278,7 @@ class CopyAndMoveCountFunctor {
278
CopyAndMoveCountFunctor& operator=(const CopyAndMoveCountFunctor& that) {
279
copy_count = that.copy_count + 1;
280
move_count = that.move_count;
281
+ return *this;
282
}
283
284
CopyAndMoveCountFunctor(CopyAndMoveCountFunctor&& that) {
0 commit comments