fix style

This commit is contained in:
Dirk Thomas 2015-06-20 11:25:42 -07:00
parent 3b337fd980
commit 3a4f14739c

View file

@ -234,8 +234,7 @@ public:
std::stringstream bytes;
bool first_byte = true;
bytes << "[" << std::hex;
for (auto & byte : as_bytes())
{
for (auto & byte : as_bytes()) {
bytes << "0x" << byte;
if (!first_byte) {
bytes << ", ";