mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-19 15:58:56 +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
Notes:
sideshowbarker
2024-07-18 01:03:40 +09:00
Author: https://github.com/awesomekling
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