Hi,
Our code standards ask for the return type in its own line for function definitions (if not inside the class declaration), how can I make that work?
Header:
class A
{
int a() { }
int b();
}
Source:
int
A::b()
{
// something
}
Thanks,
Damian