mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:38:11 +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:
parent
47dd1b9f8b
commit
7464dfa974
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue