Code: Select all
Event = Event()
EventWindow = EventWindow()
...
Is this still suggested with the PB compiler? Or, is this just old-school style?
Which brings me to my point of the question: how optimizig is the compiler? With modern GCC/Clang/MSVC, "stupid" compiler tricks are no longer necessary. The compilers just know how to translate into the most efficient machine code, down to out-of-order execution.

