From 8a3ac6fb9b414bfa32b7c82a6705fcd31b2b5a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 1 Jun 2026 18:56:51 +0200 Subject: [PATCH] Text: this return is never reached. The CORRADE_ASSERT_UNREACHABLE() macro already takes care of that. This was the only uncovered line reported in this file. --- src/Magnum/Text/AbstractFont.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Magnum/Text/AbstractFont.cpp b/src/Magnum/Text/AbstractFont.cpp index 9ab261033..a9de9998d 100644 --- a/src/Magnum/Text/AbstractFont.cpp +++ b/src/Magnum/Text/AbstractFont.cpp @@ -389,7 +389,6 @@ bool AbstractFont::fillGlyphCache(AbstractGlyphCache& cache, const std::initiali bool AbstractFont::doFillGlyphCache(AbstractGlyphCache&, const Containers::StridedArrayView1D&) { CORRADE_ASSERT_UNREACHABLE("Text::AbstractFont::fillGlyphCache(): feature advertised but not implemented", {}); - return {}; } Containers::Pointer AbstractFont::createGlyphCache() {