Fix iteration and petal append bugs.

This commit is contained in:
2026-08-10 14:21:46 +01:00
parent e56f784c9a
commit 23b7b8c8a8
6 changed files with 33 additions and 35 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ Vase &Vase::operator=(Vase &&other) noexcept {
uint64_t Vase::length() {
if (!root)
return 0;
return root->length;
return root->length + posix_ending;
}
uint64_t Vase::lines() {