1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

Kernel: Make CoreDump::m_num_program_headers const

This makes it an error to assign to it after construction.
This commit is contained in:
Andreas Kling 2020-12-15 11:18:01 +01:00
parent ff8bf4db8d
commit 28c042e46f
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ private:
Process& m_process;
NonnullRefPtr<FileDescription> m_fd;
size_t m_num_program_headers;
const size_t m_num_program_headers;
};
}