summaryrefslogtreecommitdiffstats
path: root/engine/include/collector.hpp
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-28 23:01:27 +0100
committerNao Pross <naopross@thearcway.org>2019-01-28 23:01:27 +0100
commit8699104339217cf6b7e9fe46332c73f4a0c7901f (patch)
treef699cd8c7a196034dd171e27ba504e56c2807215 /engine/include/collector.hpp
parentRemove bitfileds to remove a bazillion of warnings (diff)
downloadflatland-8699104339217cf6b7e9fe46332c73f4a0c7901f.tar.gz
flatland-8699104339217cf6b7e9fe46332c73f4a0c7901f.zip
Remove almost every -Wshadow warning
Diffstat (limited to 'engine/include/collector.hpp')
-rw-r--r--engine/include/collector.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/include/collector.hpp b/engine/include/collector.hpp
index 45a3e74..448dba9 100644
--- a/engine/include/collector.hpp
+++ b/engine/include/collector.hpp
@@ -8,11 +8,11 @@ namespace flat {
class FlatCollector : virtual public flat::object
{
- FlatCollector * parent;
+private:
+ FlatCollector * m_parent;
+ bool m_released;
- bool released;
-
- std::set<FlatCollector*> children;
+ std::set<FlatCollector*> m_children;
public: