I cannot find the parameter in eclipse, so that I can automatically cancel it my preprocessor macros in the same way as the indentation code. For example, eclipse is trying to format such code.
int main() { #ifdef SOMETHING cout << "Something Defined" << endl; #endif return 0; }
While I want it to look like ...
int main() { #ifdef SOMETHING cout << "Something Defined" << endl; #endif return 0; }
Any ideas to do an eclipse to do it the way I want?
c ++ eclipse
chasep255
source share