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()