Open main menu

Difference between revisions of "Code Formatting Conventions"

→‎Whitespaces: -- use proper C++ for Vertical alignment example
(→‎Whitespaces: Added vertical alignment)
(→‎Whitespaces: -- use proper C++ for Vertical alignment example)
Line 154: Line 154:
int morefoo = 3;
int morefoo = 3;


Common::Rect *r = Common::Rect(x,
Common::Rect *r = new Common::Rect(x,
                              y,
                                  y,
                              x + w,
                                  x + w,
                              y + h);
                                  y + h);
</source>
</source>