my compiler throws
error: expected ';' before '<' token
on this line of code:
std::vector< std::vector<int> > data;
What's real weird is that I compiled this earlier today on my mac with g++ on the command line and now i'm trying to compile in xCode on the same mac (which i assume also uses g++) and it throws this error.
What am I missing here?
EDIT: I knew it had to be right in front of me, but there was nothing else wrong in the file. it was the semicolon at the end of an included class. Thanks.