mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
ircd::db: Minor cleanup; fix identation.
This commit is contained in:
parent
0cef42895c
commit
cc8a835ab7
1 changed files with 5 additions and 5 deletions
|
@ -112,11 +112,11 @@ namespace ircd::db
|
|||
enum class ircd::db::pos
|
||||
:int8_t
|
||||
{
|
||||
FRONT = -2, // .front() | first element
|
||||
PREV = -1, // std::prev() | previous element
|
||||
END = 0, // break; | exit iteration (or past the end)
|
||||
NEXT = 1, // continue; | next element
|
||||
BACK = 2, // .back() | last element
|
||||
FRONT = -2, // .front() | first element
|
||||
PREV = -1, // std::prev() | previous element
|
||||
END = 0, // break; | exit iteration (or past the end)
|
||||
NEXT = 1, // continue; | next element
|
||||
BACK = 2, // .back() | last element
|
||||
};
|
||||
|
||||
enum ircd::db::op
|
||||
|
|
Loading…
Reference in a new issue