From 8fe1c1f78876c8ef189a12ac9174488ed9576384 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 17 Nov 2021 07:44:02 +0100 Subject: [PATCH] AK: Add missing return in Formatter::format() Caught by ENABLE_ALL_THE_DEBUG_MACROS. --- AK/Format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Format.h b/AK/Format.h index e3be0e5705..90f2b5bf18 100644 --- a/AK/Format.h +++ b/AK/Format.h @@ -405,7 +405,7 @@ struct Formatter : Formatter { Formatter formatter { *this }; return formatter.format(builder, reinterpret_cast(value)); } - Formatter::format(builder, { value, Size }); + return Formatter::format(builder, { value, Size }); } }; template<>