Revert "Cleanup: Fix unused-private-field warning."

This reverts commit 43c48965d7.
It created a new warning on GCC: -Wattribute (ignored attribute) as
GCC doesn't warn about unused private fields.
This commit is contained in:
Ankit Meel 2021-03-25 17:23:46 +05:30
parent 9947f20956
commit 0083a7615e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class TreeElementOverridesBase final : public AbstractTreeElement {
};
class TreeElementOverridesProperty final : public AbstractTreeElement {
[[maybe_unused]] ID &id_;
ID &id_;
IDOverrideLibraryProperty &override_prop_;
public: