Suppress variable-set-but-not-used warning from clang 13.
authorTom Lane <[email protected]>
Sun, 23 Jan 2022 16:09:00 +0000 (11:09 -0500)
committerTom Lane <[email protected]>
Sun, 23 Jan 2022 16:09:43 +0000 (11:09 -0500)
commitd9a81e8671897340dcfec2d2365def9972d917d0
tree9ee30c4072c7494491a4d266525629a2a4cd5dfb
parenta3eb08b809a4b9e348efb0bae9c2834b71d53273
Suppress variable-set-but-not-used warning from clang 13.

In the normal configuration where GEQO_DEBUG isn't defined,
recent clang versions have started to complain that geqo_main.c
accumulates the edge_failures count but never does anything
with it.  As a minimal back-patchable fix, insert a void cast
to silence this warning.  (I'd speculated about ripping out the
GEQO_DEBUG logic altogether, but I don't think we'd wish to
back-patch that.)

Per recently-established project policy, this is a candidate
for back-patching into out-of-support branches: it suppresses
an annoying compiler warning but changes no behavior.  Hence,
back-patch all the way to 9.2.

Discussion: https://postgr.es/m/CA+hUKGLTSZQwES8VNPmWO9AO0wSeLt36OCPDAZTccT1h7Q7kTQ@mail.gmail.com
src/backend/optimizer/geqo/geqo_main.c