I've been looking around for a fix to my errors but I can't quite find my case anywhere. So I have a function
int getUniques(Visitors info[], string address, string startDate, string endDate);
The function is going to take in my array full of Class Objects, and 3 strings. When I attempt to build, I get an assortment of errors. I'll list them all.
'Visitors' was not declared in this scope
Expected primary-expression before 'address' (same goes for other strings)
Expression list treated as compound expression in initializer
Anyone know what these mean and how to fix them?
EDIT: Lol I know so stupid of me, I fixed it now but I have other issues that I wanted to lead into. I am going to re-do my post and re-post in a little while if I still can't get my method to work.