From 330d945130c3f48cbd796c11628654be0cfb175a Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Tue, 23 Nov 2021 19:43:56 +0100 Subject: [PATCH] SpaceWrapper: last_for_loop_status has been removed --- src/spacewrapper.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/spacewrapper.h b/src/spacewrapper.h index f133d76..60f6852 100644 --- a/src/spacewrapper.h +++ b/src/spacewrapper.h @@ -57,7 +57,6 @@ public: SpaceWrapper(pt::Space * space) { this->space = space; - last_for_loop_status = false; initialize_indices(); } @@ -105,22 +104,12 @@ public: return std::numeric_limits::max(); } - void set_last_for_loop_status(bool for_status) - { - last_for_loop_status = for_status; - } - - bool get_last_for_loop_status() - { - return last_for_loop_status; - } protected: const size_t SPACE_INDICES_TABLE_SIZE = 32; pt::Space * space; std::vector indices; - bool last_for_loop_status; void initialize_indices()