Please comply with these:
$ svn diff # comfortable: svn diff | view - $ svn status
$ svn status -u $ svn update
$ svn commit -m'commit message' [<files>]
Please comply with these:
int* a, b which in fact means int *a, b).Example code:
if (true) { do_something(); // do something useful } else do_something(123, arg2, etc); int *x, *y; float* calc(float a, float b) { return a + b; } class ExampleClass { public: ExampleClass(); void setValue(int value); int getValue() const { return value; }; private: int value; int flags; }; void ExampleClass::setValue(int value) { // this-pointer needed if same variable name in current scope this->value = value; // no this-pointer for members flags = 0x123; } switch (option) { case value1: something(); break; case value2: something(); break; default: something_other(); }