mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
AK: Add missing return in Formatter<unsigned char[Size]>::format()
Caught by ENABLE_ALL_THE_DEBUG_MACROS.
This commit is contained in:
parent
216e21a1fa
commit
8fe1c1f788
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ struct Formatter<unsigned char[Size]> : Formatter<StringView> {
|
||||||
Formatter<FlatPtr> formatter { *this };
|
Formatter<FlatPtr> formatter { *this };
|
||||||
return formatter.format(builder, reinterpret_cast<FlatPtr>(value));
|
return formatter.format(builder, reinterpret_cast<FlatPtr>(value));
|
||||||
}
|
}
|
||||||
Formatter<StringView>::format(builder, { value, Size });
|
return Formatter<StringView>::format(builder, { value, Size });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
template<>
|
template<>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue