Lets all agree…
… that we should write our pointers and reference declarations like this:
int * foo;
int & foo;
More explictly: Lets forget about the dispute between “int *foo” and “int* foo” and just put spaces on both sides, OK?
… that we should write our pointers and reference declarations like this:
int * foo;
int & foo;
More explictly: Lets forget about the dispute between “int *foo” and “int* foo” and just put spaces on both sides, OK?
Dean decided to do that one day. I now have
code with char* blah, char *blah and char * blah
to deal with.