mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:27:43 +00:00
LibPDF: Convert to east-const to comply with the recent style changes
This commit is contained in:
parent
0a4d8ef98d
commit
612b183703
17 changed files with 120 additions and 120 deletions
|
@ -14,12 +14,12 @@ namespace PDF {
|
|||
|
||||
class Reader {
|
||||
public:
|
||||
explicit Reader(const ReadonlyBytes& bytes)
|
||||
explicit Reader(ReadonlyBytes const& bytes)
|
||||
: m_bytes(bytes)
|
||||
{
|
||||
}
|
||||
|
||||
ALWAYS_INLINE const ReadonlyBytes& bytes() const { return m_bytes; }
|
||||
ALWAYS_INLINE ReadonlyBytes const& bytes() const { return m_bytes; }
|
||||
ALWAYS_INLINE size_t offset() const { return m_offset; }
|
||||
|
||||
bool done() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue