Turned on all the warnings I could handle and made them into errors then fixed them all. Worldbuilder needs a refactor in random_path.

This commit is contained in:
Zed A. Shaw 2025-01-10 15:22:37 -05:00
parent f3f875ee80
commit 128fc4f540
19 changed files with 85 additions and 85 deletions

View file

@ -25,7 +25,7 @@ public:
}
void START(MyEvent ev) {
println("<<< START");
println("<<< START {}", (int)ev);
state(MyState::RUNNING);
}
@ -40,7 +40,7 @@ public:
}
void END(MyEvent ev) {
println("<<< STOP");
println("<<< STOP {}", (int)ev);
state(MyState::END);
}
};