mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 14:58:46 +00:00
Kernel: Use default con/de-structors
This may seem like a no-op change, however it shrinks down the Kernel by a bit: .text -432 .unmap_after_init -60 .data -480 .debug_info -673 .debug_aranges 8 .debug_ranges -232 .debug_line -558 .debug_str -308 .debug_frame -40 With '= default', the compiler can do more inlining, hence the savings. I intentionally omitted some opportunities for '= default', because they would increase the Kernel size.
This commit is contained in:
parent
2dea887e8f
commit
860a3bbce3
Notes:
sideshowbarker
2024-07-18 21:51:36 +09:00
Author: https://github.com/BenWiederhake
Commit: 860a3bbce3
Pull-request: https://github.com/SerenityOS/serenity/pull/5560
28 changed files with 33 additions and 38 deletions
|
@ -51,7 +51,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
~DiskCache() { }
|
||||
~DiskCache() = default;
|
||||
|
||||
bool is_dirty() const { return m_dirty; }
|
||||
void set_dirty(bool b) { m_dirty = b; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue