This code:-
void foo()
{
printf("Hello: {0} %d",42);
};
...formats like this...
void foo()
{
printf("Hello:
{
0
} %d",42);
};
The problem is the spurious doublequoute on the include line. My compiler happily ignores it, but astyle gets out of sync with its literal strings.
Gah. Markdown...
Fixed.