Commit 62a7a704 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

doc/developer: update style guidelines to include for loops with declarations

Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
parent ce943dd6
...@@ -128,6 +128,9 @@ designated struct initializers (@samp{struct s x = @{ .i = 17 @};}); ...@@ -128,6 +128,9 @@ designated struct initializers (@samp{struct s x = @{ .i = 17 @};});
@item @item
compound literals (@samp{x = (struct s) @{ 17, 23 @};}). compound literals (@samp{x = (struct s) @{ 17, 23 @};}).
@item
for loops with variable definition (@samp{for (int i = 0; i < 8; i++)});
@item @item
Implementation defined behavior for signed integers is assumed to match the Implementation defined behavior for signed integers is assumed to match the
expected behavior for two's complement. Non representable values in integer expected behavior for two's complement. Non representable values in integer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment