mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 12:18:25 +00:00
LibSQL: Add missing definition of Value's u32 comparator
This was declared but not defined (nor was it used, but an upcoming commit will be using it).
This commit is contained in:
committed by
Linus Groh
parent
47dd1b9f8b
commit
7464dfa974
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user