]> granicus.if.org Git - graphviz/commit
remove dead code in get_centroid
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 26 Jun 2021 03:12:54 +0000 (20:12 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 30 Jun 2021 02:35:21 +0000 (19:35 -0700)
commit26b2c9c8d65ea4c54eebd4c7d48f7ee5fafa8866
treea3c62f5523dabf43cc38450c6d83e0f68e9b5c46
parent036a73f4601816ccb5ccd7e46857f2524d20e91f
remove dead code in get_centroid

The preceding return statement ensures none of the latter part of the function
is reachable. This was introduced in 05674ae147c14ec4ec74b2b6771e04e0c82209b8
and seemingly never noticed.

This commit also drops now-unused variables, as well as the static qualifier
from sum. It is not clear to me what the purpose of making sum static was. It is
a small struct and both its fields are overwritten immediately when entering
this function, so there is no value to retaining it across calls or
BSS-allocating it.
lib/common/routespl.c