refactored

This commit is contained in:
2026-05-24 14:21:35 +03:00
parent b75c9581b8
commit 119b85ea31
5 changed files with 56 additions and 58 deletions
+2 -2
View File
@@ -8,12 +8,12 @@ Fields:
Line::Line() {
this->line.clear();
this->line.reserve(4);
this->line.resize(4);
}
Line::Line(size_t length) {
this->line.clear();
this->line.reserve(length);
this->line.resize(length);
}
void Line::process() {