Hi all, There are some errors in the coding style page I believe. Two big issues:
namespace Inkscape { namespace UI { Sandwich make_sandwich(int x); int make_a_mess(float y); } }
instead of
namespace Inkscape { namespace UI { Sandwich make_sandwich(int x); int make_a_mess(float y); } }
For these kind of forward declarations, I think it is much clearer to indent. Not for class definitions etc.
And
switch (a) { case 1: do_one(); break;
instead of
switch (a) { case 1: { do_one(); break; } ... default: break; }
Thanks for the changes, Johan
(I look forward to the release of the new site!)