Solving mistakes about the m flag

This commit is contained in:
Anonymus Raccoon
2020-02-28 00:37:17 +01:00
parent 4394c7625e
commit 6c3c832539
11 changed files with 84 additions and 50 deletions
-2
View File
@@ -36,12 +36,10 @@ namespace ComSquare::Utility
std::string to_binary(uint16_t i)
{
return std::bitset<16>(i).to_string();
}
std::string to_binary(uint24_t i)
{
return std::bitset<24>(i).to_string();
}
}