Skip to content

Commit

Permalink
fix issue#15, minor wrapper_class issue. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
broccoliSpicy authored Jan 9, 2024
1 parent b64834d commit b506403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wrapper_class.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class IntPtrManager {
other.ptr_ = nullptr;
}

// Move assignment operator for class Person. Similar techniques as
// Move assignment operator for this wrapper class. Similar techniques as
// the move constructor.
IntPtrManager &operator=(IntPtrManager &&other) {
ptr_ = other.ptr_;
Expand Down Expand Up @@ -130,4 +130,4 @@ int main() {
// it is managing.

return 0;
}
}

0 comments on commit b506403

Please sign in to comment.