LibSQL: Clean up code style and remove unused includes

No functional changes.
This commit is contained in:
Jelle Raaijmakers 2023-04-19 19:03:00 +02:00 committed by Tim Flynn
commit a99c1297e0
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
14 changed files with 43 additions and 96 deletions

View file

@ -10,7 +10,7 @@ namespace SQL {
void Serializer::serialize(DeprecatedString const& text)
{
serialize<u32>((u32)text.length());
serialize<u32>(text.length());
if (!text.is_empty())
write((u8 const*)text.characters(), text.length());
}