Code formatting

This commit is contained in:
gabime
2018-10-19 17:12:35 +03:00
parent 70bef682b0
commit 4e3e80109a
4 changed files with 7 additions and 8 deletions

View File

@@ -147,7 +147,7 @@ void async_example()
void binary_example()
{
std::vector<char> buf;
for(int i = 0; i < 80; i++)
for (int i = 0; i < 80; i++)
{
buf.push_back(static_cast<char>(i & 0xff));
}