../../../src/common/reqtext.c: In function ‘req_text_insert’:
../../../src/common/reqtext.c:2888:12: error: this statement may fall through (-Werror=implicit-fallthrough=)
2888 | } else {
|
../../../src/common/reqtext.c:2949:3: note: here
2949 | case VUT_MINLATITUDE:
Seems like a genuine bug; unsupported ranges just "break;" from the inner switch, and there's neither break or return after that to prevent falling through in the outer switch.
Compiling master with --enable-debug=checks:
../../../src/common/reqtext.c: In function ‘req_text_insert’:
../../../src/common/reqtext.c:2888:12: error: this statement may fall through (-Werror=implicit-fallthrough=)
../../../src/common/reqtext.c:2949:3: note: here
Seems like a genuine bug; unsupported ranges just "break;" from the inner switch, and there's neither break or return after that to prevent falling through in the outer switch.