T
thomas
compile error :
bool cmp(const int &x, const int &y) const{
return x>y;
}
it says that the third const should not be used. why?
bool cmp(const int &x, const int &y) const{
return x>y;
}
it says that the third const should not be used. why?