Успешный запуск C++ 23!!!

This commit is contained in:
Антон
2025-07-02 21:28:03 +03:00
parent 6571cad5ff
commit b7c6498126
13 changed files with 19 additions and 358 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ std::string ToHex(std::byte* src, size_t len)
string ret;
ret.reserve(len * 2);
format formatter = format("%02X");
boost::format formatter = boost::format("%02X");
for (size_t i = 0; i < len; ++i)
{