What is wrong wit the following constructor declaration? I keep getting this error:
Expected ')' before token '<'
class Environment{ public: Environment(vector<vector<char> > roomData); private: //.... }; Note: ok I see what's wrong. I did not add: using namespace std;