diff options
| author | Connor McDowell <[email protected]> | 2024-03-03 17:22:23 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-03-03 17:22:23 -0800 |
| commit | edc596d96bbbb4a1a9bbc42721233ea1880b9058 (patch) | |
| tree | a7a4bce97a42846f24e5bd145f699bfa76aa285e | |
| parent | OK saving to contact works, moving it into list is not. will work on copy lat... (diff) | |
| download | homework-7-connormcdowell275-edc596d96bbbb4a1a9bbc42721233ea1880b9058.tar.xz homework-7-connormcdowell275-edc596d96bbbb4a1a9bbc42721233ea1880b9058.zip | |
tested potiential issue, did not fix
| -rw-r--r-- | Project1/contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project1/contacts.cpp b/Project1/contacts.cpp index d90f003..d7ce25c 100644 --- a/Project1/contacts.cpp +++ b/Project1/contacts.cpp @@ -191,7 +191,7 @@ void addContact(contact newContact, size_t MAX, contact_list contacts[]) } } -void contact_list::AddContact(const contact& newContact) +void contact_list::AddContact(const contact& newContact) { contacts_[size_++] = newContact; //CURRENTLY TESTING |