I usually wrap my code lines so that they are up tp 80 characters long.
Which wrapping looks better to you?
// (A)
std::vector<MyLongClassName::size_type>* myvector
= new std::vector<MyLongClassName::size_type>();
bool isOneOrAnother = hereIsOneLongCondition
&& hereIsAnotherOne;
// (B)
std::vector<MyLongClassName::size_type>* myvector =
new std::vector<MyLongClassName::size_type>();
bool isOneOrAnother = hereIsOneLongCondition &&
hereIsAnotherOne;
I know it is arbitrary, but is there a convention or a preferred way?