added cross-platform

This commit is contained in:
2023-12-03 15:31:50 +03:00
parent c4b8e2dd7a
commit 0afbb32788
7 changed files with 103 additions and 42 deletions

View File

@@ -9,7 +9,7 @@ public:
printf("text length=%ld\n", this->getLength());
auto elems = this->getElements();
for (size_t i = 0; i < elems.size(); ++i) {
for (long i = 0; i < elems.size(); ++i) {
printf("i=%ld; [%s]\n", i, elems[i]->getCharArray());
// elements[i]->println();
}