1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

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

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
Rostislav Pehlivanov 2018-05-18 02:24:28 +01:00
parent ce943dd6ac
commit 62a7a70484

View File

@ -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