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/Contact_list.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/Contact_list.h')
| -rw-r--r-- | Project1/Contact_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project1/Contact_list.h b/Project1/Contact_list.h index 9748cee..3f22752 100644 --- a/Project1/Contact_list.h +++ b/Project1/Contact_list.h @@ -21,7 +21,7 @@ public: contact_list() = default; contact_list(const size_t& size); ~contact_list(); - void CopyList(const contact* contacts, const size_t& size); + void CopyList(contact* contacts, size_t size); void set_length(size_t MAX); size_t get_length(); |