"Reformat Code" does not work well with multiline macros
Hello,
I downloaded and installed Sun Studio Express Release with D-Light.
Sun Studio IDE looks very nice, but there are some problems.
One of them is that "Reformat Code" does not work well in C/C++ code
with multi line macros. Here is what I see on the screen:
#define wastetime(res) { \
res = (((res / 3) + res) / 3); \
res = (((res / 7) + res) / 7); \
res = (((res / 3) + res) / 3); \
res = (((res * 7) + res) * 7); \
}

