From 3efa6cedec027647a2e4d6fcb1408102a6b3a98c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 29 Mar 2022 15:45:29 +0200 Subject: [PATCH] LibWeb: Remove unused StyleSheetList::m_generation --- Userland/Libraries/LibWeb/CSS/StyleSheetList.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/StyleSheetList.h b/Userland/Libraries/LibWeb/CSS/StyleSheetList.h index 0fe931bece..be152a1875 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleSheetList.h +++ b/Userland/Libraries/LibWeb/CSS/StyleSheetList.h @@ -51,8 +51,6 @@ private: DOM::Document& m_document; NonnullRefPtrVector m_sheets; - - int m_generation { 0 }; }; }