SpaceWrapper: last_for_loop_status has been removed

This commit is contained in:
Tomasz Sowa 2021-11-23 19:43:56 +01:00
parent c14b0eb626
commit 330d945130
1 changed files with 0 additions and 11 deletions

View File

@ -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<size_t>::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<size_t> indices;
bool last_for_loop_status;
void initialize_indices()