diff options
| author | Connor McDowell <[email protected]> | 2024-03-09 18:41:38 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-03-09 18:41:38 -0800 |
| commit | 9a9e4428f4c17936ae9c22bf58e64a437ac93fe7 (patch) | |
| tree | f613239c3b639b3412df71c34735e9430fe561fe /Project1/Contacts.h | |
| parent | small cleanup (diff) | |
| download | homework-7-connormcdowell275-main.tar.xz homework-7-connormcdowell275-main.zip | |
copy works as intended
print works as intended
Diffstat (limited to 'Project1/Contacts.h')
| -rw-r--r-- | Project1/Contacts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h index d488a43..82a7446 100644 --- a/Project1/Contacts.h +++ b/Project1/Contacts.h @@ -12,7 +12,7 @@ public: // constructors and destructors. contact() = default; - contact& operator=(const contact& rhs); + contact& operator=(contact& rhs); contact(contact&& move) noexcept; contact& operator=(contact&& rhs) noexcept; |