summaryrefslogtreecommitdiffstats
path: root/engine/include/serial
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/serial
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/serial')
-rw-r--r--engine/include/serial/focusable.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/include/serial/focusable.hpp b/engine/include/serial/focusable.hpp
index 8a05051..e5f5d5b 100644
--- a/engine/include/serial/focusable.hpp
+++ b/engine/include/serial/focusable.hpp
@@ -10,7 +10,8 @@ namespace flat {
class Focusable : virtual public flat::object
{
- bool focused;
+private:
+ bool m_focused;
protected: