Are there any restrictions on creating vectors with custom classes? Recently, my compiler has been sending a 'LNK1120' warning whenever I attempt the statement:
vector<Team> teamList;
If this is illegal, is there a workaround that would allow me to store/organize a group of these instances? Thanks.