vector myFunction(int iArgument) {} does not work........
Printable View
vector myFunction(int iArgument) {} does not work........
You probably need to specify a type for the vector, since it's a template class. Try:
vector<int> myFunction(int iArgument) {}
wait nevermind. I had it in a class, so I needed vector <ClassName::Struct> x
thanks anyways