mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:07:45 +00:00
LibPDF: Fix math error in comments
This commit is contained in:
parent
750bed254f
commit
35674b8a42
1 changed files with 2 additions and 2 deletions
|
@ -20,8 +20,8 @@ public:
|
||||||
// This may need to be rethought later, as the max generation index is
|
// This may need to be rethought later, as the max generation index is
|
||||||
// 2^16 and the max for the object index is probably 2^32 (I don't know
|
// 2^16 and the max for the object index is probably 2^32 (I don't know
|
||||||
// exactly)
|
// exactly)
|
||||||
static constexpr auto max_ref_index = (1 << 19) - 1; // 2 ^ 18 - 1
|
static constexpr auto max_ref_index = (1 << 19) - 1; // 2 ^ 19 - 1
|
||||||
static constexpr auto max_ref_generation_index = (1 << 15) - 1; // 2 ^ 14 - 1
|
static constexpr auto max_ref_generation_index = (1 << 15) - 1; // 2 ^ 15 - 1
|
||||||
|
|
||||||
Value()
|
Value()
|
||||||
: m_type(Type::Empty)
|
: m_type(Type::Empty)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue