]> granicus.if.org Git - graphviz/commit
smyrna: simplify inner 'load_attributes' loop
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 9 Jul 2022 15:11:44 +0000 (08:11 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 16 Jul 2022 00:06:34 +0000 (17:06 -0700)
commit55b16251431b542d10e81302d1a3a68bab4d42f5
treeffe822f7659eaeccbac39e37688a7af5a72fb3ca
parentc0d1c0247f78ecd2dd446498abe6b2e002914c58
smyrna: simplify inner 'load_attributes' loop

This loop contains no `continue` statements, its counter is incremented in a
regular way, and the counter is unused outside the loop. So we can write the
loop more concisely and scope `ind` more tightly by using a `for` loop instead
of a `while` loop.
cmd/smyrna/gui/gui.c