From 603fa2dbf9d68daed655c00db78393f8092c2317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Sun, 28 Jul 2024 22:26:03 +0200 Subject: [PATCH] Add call to UNREACHABLE() to fix building with -Werror=return-type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaime Marquínez Ferrándiz --- generator/address_parser/tiger_parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/generator/address_parser/tiger_parser.cpp b/generator/address_parser/tiger_parser.cpp index ea40ea5aba..2a5dbbfbf5 100644 --- a/generator/address_parser/tiger_parser.cpp +++ b/generator/address_parser/tiger_parser.cpp @@ -112,5 +112,6 @@ std::string DebugPrint(InterpolType type) case InterpolType::Odd: return "Interpol::Odd"; case InterpolType::Even: return "Interpol::Even"; } + UNREACHABLE(); } } // namespace feature