Clean utils folder (namespaces, function names)

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1359
This commit is contained in:
Marko Budiselic
2018-04-22 08:31:09 +02:00
parent 44474b55e3
commit c76170a9db
68 changed files with 248 additions and 545 deletions

View File

@@ -46,7 +46,7 @@ const uint8_t ignored_resp[] = {0x00, 0x02, 0xb0, 0x7e, 0x00, 0x00};
// Write bolt chunk header (length)
void WriteChunkHeader(TestInputStream &input_stream, uint16_t len) {
len = bswap(len);
len = utils::Bswap(len);
input_stream.Write(reinterpret_cast<uint8_t *>(&len), sizeof(len));
}