diff --git a/Userland/Libraries/LibGfx/ImageFormats/CCITTDecoder.cpp b/Userland/Libraries/LibGfx/ImageFormats/CCITTDecoder.cpp index 6f13eee587..f47cd24e80 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/CCITTDecoder.cpp +++ b/Userland/Libraries/LibGfx/ImageFormats/CCITTDecoder.cpp @@ -237,8 +237,8 @@ constexpr Array common_make_up_codes = { Code { 2560, 12, 0b000000011111 }, }; -template -Optional get_code_from_table(Array const& array, u16 code_word, u8 code_size) +template +Optional get_code_from_table(Array const& array, u16 code_word, u8 code_size) { for (auto const& code : array) { if (code.code_length == code_size && code.code == code_word)