R
ravinderthakur
class Party{
public:
double averageNames(int n, int personA[], int personB[]){
vector<set<int>> personsKnown;
//vector< set<int> > personsKnown;
}
};
int main(){
Party p;
return 0;
}
can anybody plz explain me why the code dosn't compile on msvc6 wheere
as the line that is commented compiles perfectly.note the only
difference between the two is of the spaces
around <>.
thanks
rt
public:
double averageNames(int n, int personA[], int personB[]){
vector<set<int>> personsKnown;
//vector< set<int> > personsKnown;
}
};
int main(){
Party p;
return 0;
}
can anybody plz explain me why the code dosn't compile on msvc6 wheere
as the line that is commented compiles perfectly.note the only
difference between the two is of the spaces
around <>.
thanks
rt