You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
🇵🇦 Nuestro primer dominio localizado está en español en
kiwifarms.pa. Our first localized domain is on Spanish on
kiwifarms.pa.
Profile your program, write micro-benchmarks for interesting sections, when you tweak those sections you can use those benchmarks as guidance...
Allocate the memory structures you'll need in advance in a large pool, take them from the pool instead of allocating dynamically. Return to pool...
Pass objects by reference unless the function absolutely has to have its own copy.
Never use naked new/delete, use smart pointers instead
Just...