summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibSQL/Value.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibSQL/Value.cpp b/Userland/Libraries/LibSQL/Value.cpp
index 5611cbaadd..42c5b20e18 100644
--- a/Userland/Libraries/LibSQL/Value.cpp
+++ b/Userland/Libraries/LibSQL/Value.cpp
@@ -415,6 +415,11 @@ bool Value::operator==(int value) const
return to_int() == value;
}
+bool Value::operator==(u32 value) const
+{
+ return to_u32() == value;
+}
+
bool Value::operator==(double value) const
{
return to_double() == value;