1
Fork 0
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:
Ben Wiederhake 2021-09-16 23:36:59 +02:00 committed by Ali Mohammad Pur
parent 750bed254f
commit 35674b8a42

View file

@ -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)