diff options
author | Lenny Maiorani <lenny@serenityos.org> | 2022-03-23 20:58:03 -0600 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-03-24 20:09:26 -0700 |
commit | 0b7baa7e5a556f82988ad4f6b39fed8cd38ae9fd (patch) | |
tree | 85342dfcc6110883cf5865abe3f4bdae0f308173 /Userland/Services/WindowServer/WindowStack.cpp | |
parent | 5550905c00c097b92eb5832fc92b88a00018620b (diff) | |
download | serenity-0b7baa7e5a556f82988ad4f6b39fed8cd38ae9fd.zip |
Services: Use default constructors/destructors
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules
"The compiler is more likely to get the default semantics right and
you cannot implement these functions better than the compiler."
Diffstat (limited to 'Userland/Services/WindowServer/WindowStack.cpp')
-rw-r--r-- | Userland/Services/WindowServer/WindowStack.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Services/WindowServer/WindowStack.cpp b/Userland/Services/WindowServer/WindowStack.cpp index 7f307428e5..22f5233d05 100644 --- a/Userland/Services/WindowServer/WindowStack.cpp +++ b/Userland/Services/WindowServer/WindowStack.cpp @@ -15,10 +15,6 @@ WindowStack::WindowStack(unsigned row, unsigned column) { } -WindowStack::~WindowStack() -{ -} - void WindowStack::add(Window& window) { VERIFY(!window.is_on_any_window_stack({})); |