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 b64834d commit b506403Copy full SHA for b506403
src/wrapper_class.cpp
@@ -74,7 +74,7 @@ class IntPtrManager {
74
other.ptr_ = nullptr;
75
}
76
77
- // Move assignment operator for class Person. Similar techniques as
+ // Move assignment operator for this wrapper class. Similar techniques as
78
// the move constructor.
79
IntPtrManager &operator=(IntPtrManager &&other) {
80
ptr_ = other.ptr_;
@@ -130,4 +130,4 @@ int main() {
130
// it is managing.
131
132
return 0;
133
-}
+}
0 commit comments