|
|
back to boardCommon BoardWhat's wrong with compilation? Posted by Yarik 25 Jul 2007 20:03 Why does this string of code cause "Compilation error": vector<vector<string>>* middleresult; ? I my MSVS compiler it goes well. But not here... :( Tnx for any help. Re: What's wrong with compilation? Just input one more space character in middleresult's declaration: vector< vector<string> >* middleresult; Many compilers proceed ">>" at this declarations as binary shifting. Edited by author 25.07.2007 22:29 |
|
|