(When C++20 finally get released and compilers got support of it) I think we should move to C++20, making a lot of stuff easier:
- No more
"blablabal" + std::to_string(foo) + "blablabla" + std::to_string(bar)
- string formatting solves the problem
- Contracts, making the code faster
- etc...
(When C++20 finally get released and compilers got support of it) I think we should move to C++20, making a lot of stuff easier:
"blablabal" + std::to_string(foo) + "blablabla" + std::to_string(bar)