mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 01:31:10 +00:00
The `backend == "qt"` refusal sat below the --impl-class / --impl-header requirement checks, so `--backend qt` alone never reached it: it exited 1 with "Error: --backend qt requires --impl-class <ClassName>", which reads as though qt would work given one more flag. qt was removed; no flag rescues it. Hoisted the refusal (and the unsupported-backend error) above those checks. The cdylib branch returns on every path before this point, so the two checks could only ever gate a backend that was about to be rejected anyway; they are dropped rather than left unreachable. `--backend qt` now exits 6 with the removal message, `--backend bogus` exits 1, and cdylib is untouched. checks.generator-cli and checks.tests pass. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>