After-merge clean-ups

This commit is contained in:
Thomas Krijnen
2026-07-09 13:30:48 +02:00
parent 7fc2d9a998
commit 561a23cfbc
164 changed files with 1373 additions and 1406 deletions
+2 -2
View File
@@ -629,7 +629,7 @@ int main () {
}
case NEXT: {
Next n; n.read(std::cin);
has_more = iterator->next() != 0;
has_more = static_cast<bool>(iterator->next());
if (!has_more) {
delete file;
delete iterator;
@@ -641,7 +641,7 @@ int main () {
}
case GET_LOG: {
get_log gl; gl.read(std::cin);
WriteLog(logger::Root().get_log()).write(std::cout);
WriteLog(logger::root().get_log()).write(std::cout);
continue;
}
case BYE: {