Browse Source

Update lambda examples in coding style doc.

pull/16/head
Jeff Young 6 years ago
parent
commit
f679be4101
  1. 4
      Documentation/development/coding-style-policy.md

4
Documentation/development/coding-style-policy.md

@ -500,7 +500,7 @@ The braces and statements of the body should be indented as you would a method,
with the braces lined up under the capture block:
~~~~~~~~~~~~~{.cpp}
auto belowCondition = [] ( const SELECTION& aSel )
auto belowCondition = []( const SELECTION& aSel )
{
return g_CurrentSheet->Last() != g_RootSheet;
};
@ -510,7 +510,7 @@ or:
~~~~~~~~~~~~~{.cpp}
auto belowCondition =
[] ( const SELECTION& aSel )
[]( const SELECTION& aSel )
{
return g_CurrentSheet->Last() != g_RootSheet;
};

Loading…
Cancel
Save