From c6d5b9822742c185c1546d9af76cc9211d55daff Mon Sep 17 00:00:00 2001 From: Piotr Tworek Date: Tue, 12 Jan 2021 01:21:03 +0100 Subject: [PATCH] decorator: Remove unused _topped_cnt variable. This private member variable is not used anywhere in the code. This produces compilation warning when using clang instead of GCC. Drop the unused variable. Issue #3985 --- repos/gems/src/app/decorator/window.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/repos/gems/src/app/decorator/window.h b/repos/gems/src/app/decorator/window.h index e152873367..d77c5030d9 100644 --- a/repos/gems/src/app/decorator/window.h +++ b/repos/gems/src/app/decorator/window.h @@ -98,8 +98,6 @@ class Decorator::Window : public Window_base Border const _border { _init_border() }; - unsigned _topped_cnt = 0; - Window_title _title { }; bool _focused = false;