1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-12-18 21:05:25 +01:00

More C++03 fixes

This commit is contained in:
Loic Blot
2018-05-14 07:42:20 +02:00
committed by SmallJoker
parent e2815d27f1
commit 695d02e6bd
12 changed files with 37 additions and 28 deletions

View File

@@ -213,7 +213,7 @@ public:
- This is usually set to true by the step() method when the object wants
to be deleted but can be set by anything else too.
*/
bool m_pending_removal = false;
bool m_pending_removal;
/*
Same purpose as m_pending_removal but for deactivation.
@@ -222,7 +222,7 @@ public:
If this is set alongside with m_pending_removal, removal takes
priority.
*/
bool m_pending_deactivation = false;
bool m_pending_deactivation;
/*
A getter that unifies the above to answer the question: