Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Meel <ankitjmeel@gmail.com>2021-03-25 14:53:46 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2021-03-25 14:53:46 +0300
commit0083a7615eb4928f470c6400bfc52af8154d4ef0 (patch)
tree78cc606adef4425760d4b9c6801054e226f3fa7f /source/blender/editors/space_outliner/tree
parent9947f2095610c56867e14b6f66923abe62782988 (diff)
Revert "Cleanup: Fix unused-private-field warning."
This reverts commit 43c48965d7cf87dd00ccf8714d2f6d08ffa4c474. It created a new warning on GCC: -Wattribute (ignored attribute) as GCC doesn't warn about unused private fields.
Diffstat (limited to 'source/blender/editors/space_outliner/tree')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element_overrides.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_element_overrides.hh b/source/blender/editors/space_outliner/tree/tree_element_overrides.hh
index 4f7025610ed..b5c772f5b33 100644
--- a/source/blender/editors/space_outliner/tree/tree_element_overrides.hh
+++ b/source/blender/editors/space_outliner/tree/tree_element_overrides.hh
@@ -39,7 +39,7 @@ class TreeElementOverridesBase final : public AbstractTreeElement {
};
class TreeElementOverridesProperty final : public AbstractTreeElement {
- [[maybe_unused]] ID &id_;
+ ID &id_;
IDOverrideLibraryProperty &override_prop_;
public: