Link SPositionHistory

Former-commit-id: 45baefd608
This commit is contained in:
2022-10-18 21:38:45 -04:00
parent 927d07d839
commit feb8677f93
3 changed files with 4 additions and 5 deletions

View File

@@ -42,10 +42,9 @@ public:
}
~reserved_vector() { clear(); }
void push_back(const T& in) {
iterator out = begin() + x0_count;
out = in;
construct(&data()[x0_count], in);
++x0_count;
}