C++ Primer by Lippman, Lajoie and Moo seems to object to code like
std::vector<std ::vector<double >something;
The concern is that >will be interpreted as a shift operator and the
code will not compile. However, I have seen no problems with this
type of code and our company happily seems to accept code like the
above with no spaces between the two characters.
Is the above code a real problem or not?
Thanks,
Paul Epstein
std::vector<std ::vector<double >something;
The concern is that >will be interpreted as a shift operator and the
code will not compile. However, I have seen no problems with this
type of code and our company happily seems to accept code like the
above with no spaces between the two characters.
Is the above code a real problem or not?
Thanks,
Paul Epstein
Comment