mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibSQL: Rename Heap
constants to match our code style
No functional changes. The constants are moved to constexpr variables inside `Heap`.
This commit is contained in:
parent
fcd35e824c
commit
194f846f12
Notes:
sideshowbarker
2024-07-17 11:29:41 +09:00
Author: https://github.com/gmta
Commit: 194f846f12
Pull-request: https://github.com/SerenityOS/serenity/pull/18476
Reviewed-by: https://github.com/trflynn89 ✅
8 changed files with 24 additions and 26 deletions
|
@ -30,7 +30,7 @@ static_assert(to_underlying(SQLTypeWithCount::Count) <= 0x0f, "Too many SQL type
|
|||
|
||||
// Adding to this list is fine, but changing the order of any value here will result in LibSQL
|
||||
// becoming unable to read existing .db files. If the order must absolutely be changed, be sure
|
||||
// to bump Heap::current_version.
|
||||
// to bump Heap::VERSION.
|
||||
enum class TypeData : u8 {
|
||||
Null = 1 << 4,
|
||||
Int8 = 2 << 4,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue