mirror of
https://github.com/catchorg/Catch2.git
synced 2025-03-13 14:24:47 +01:00

ReusableStringStream holds a std::ostringstream internally, but only exposes the ostream interface. It caches a pool of ostringstreams in a vector which is currently global, but will be made thread-local. Altogether this should enable both runtime and compile-time benefits. although more work is needed to realise the compile time opportunities.