mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibSQL: Clean up code style and remove unused includes
No functional changes.
This commit is contained in:
parent
8992ff5aeb
commit
a99c1297e0
Notes:
sideshowbarker
2024-07-17 07:25:39 +09:00
Author: https://github.com/gmta
Commit: a99c1297e0
Pull-request: https://github.com/SerenityOS/serenity/pull/18476
Reviewed-by: https://github.com/trflynn89 ✅
14 changed files with 43 additions and 96 deletions
|
@ -12,7 +12,6 @@
|
|||
#include <LibSQL/Serializer.h>
|
||||
#include <LibSQL/TupleDescriptor.h>
|
||||
#include <LibSQL/Value.h>
|
||||
#include <string.h>
|
||||
|
||||
namespace SQL {
|
||||
|
||||
|
@ -738,7 +737,6 @@ void Value::deserialize(Serializer& serializer)
|
|||
switch (m_type) {
|
||||
case SQLType::Null:
|
||||
VERIFY_NOT_REACHED();
|
||||
break;
|
||||
case SQLType::Text:
|
||||
m_value = serializer.deserialize<DeprecatedString>();
|
||||
break;
|
||||
|
@ -770,7 +768,6 @@ void Value::deserialize(Serializer& serializer)
|
|||
break;
|
||||
default:
|
||||
VERIFY_NOT_REACHED();
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case SQLType::Float:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue