mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00
LibSQL: Clean up code style and remove unused includes
No functional changes.
This commit is contained in:
parent
8992ff5aeb
commit
a99c1297e0
14 changed files with 43 additions and 96 deletions
|
@ -133,9 +133,8 @@ BTreeIterator BTreeIterator::next() const
|
|||
// end (which is really the beginning) of the tree.
|
||||
BTreeIterator BTreeIterator::previous() const
|
||||
{
|
||||
if (is_end()) {
|
||||
if (is_end())
|
||||
return end();
|
||||
}
|
||||
|
||||
auto node = m_current;
|
||||
auto ix = m_index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue