Remove IPAddr.h from Reporter.h

This commit is contained in:
Tim Wojtulewicz 2020-05-22 16:44:08 -07:00
parent ea3c679101
commit c558d771e4
14 changed files with 27 additions and 6 deletions

View file

@ -5,6 +5,7 @@
#include "DebugLogger.h"
#include "Reporter.h"
#include "net_util.h"
#include "IPAddr.h"
const float SerializationFormat::GROWTH_FACTOR = 2.5;
@ -435,4 +436,3 @@ bool BinarySerializationFormat::Write(const char* buf, int len, const char* tag)
uint32_t l = htonl(len);
return WriteData(&l, sizeof(l)) && WriteData(buf, len);
}