Andre Weissflog on Nostr: I think the Orthodox C++ advice of "don't use anything from the STL that allocates ...
I think the Orthodox C++ advice of "don't use anything from the STL that allocates memory" makes sense for perf-critical code bases: https://gist.github.com/bkaradzic/2e39896bc7d8c34e042b
For the rare case where I use C++ for cmdline tools I'm more "open" (e.g. in sokol-shdc I use std::vector and std::string together with pystring and libfmt) but that's about as far as I would go.
For the rare case where I use C++ for cmdline tools I'm more "open" (e.g. in sokol-shdc I use std::vector and std::string together with pystring and libfmt) but that's about as far as I would go.