From 4faaadc8d50d6ab7a19d22bd5a760c4b8321a51f Mon Sep 17 00:00:00 2001 From: Loïc Blot Date: Sun, 18 Jun 2017 19:55:15 +0200 Subject: Cpp11 patchset 11: continue working on constructor style migration (#6004) --- src/reflowscan.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/reflowscan.h') diff --git a/src/reflowscan.h b/src/reflowscan.h index a6d289ad5..5b1ef9b5d 100644 --- a/src/reflowscan.h +++ b/src/reflowscan.h @@ -39,10 +39,10 @@ private: void scanColumn(int x, int z); private: - Map *m_map; - INodeDefManager *m_ndef; + Map *m_map = nullptr; + INodeDefManager *m_ndef = nullptr; v3s16 m_block_pos, m_rel_block_pos; - UniqueQueue *m_liquid_queue; + UniqueQueue *m_liquid_queue = nullptr; MapBlock *m_lookup[3 * 3 * 3]; u32 m_lookup_state_bitset; }; -- cgit v1.2.3