16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 18:09:18 +02:00

Remove not needed to_string overloads and refactor existing one

This commit is contained in:
docentYT
2026-05-01 13:15:33 +02:00
parent b59ccb6de5
commit e1d8c08915
2 changed files with 22 additions and 48 deletions

View File

@@ -125,10 +125,7 @@ bool FuzzyLogicAI(double Test, double Threshold, double Probability);
std::vector<std::string> Split(std::string_view s, char delim);
std::pair<std::string, int> split_string_and_number(std::string const &Key);
std::string to_string(int Value);
std::string to_string(unsigned int Value);
std::string to_string(int Value, int width);
std::string to_string(double Value);
std::string to_string(double Value, int precision);
std::string to_string(double Value, int precision, int width);
std::string to_hex_str(int const Value, int const width = 4);