Hi, Everywhere in unity code I see the following coding style:
if (foo)
{
bar();
}
But the Google coding guidelines present in guides/cppguide.xml says
that it should be:
if (foo) {
bar();
}
So which one is correct, the first (meaning that cppguide.xml has to be
updated) or the second?
- Daniel -- Mailing list: https://launchpad.net/~unity-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~unity-dev More help : https://help.launchpad.net/ListHelp

