This commit is contained in:
Crizomb 2025-06-10 17:40:16 +02:00
commit f698a38c7e
585 changed files with 118338 additions and 0 deletions

View file

@ -0,0 +1,6 @@
template <typename T> std::string toString(const T &value) {
std::stringstream stream;
stream << value;
return stream.str();
}