From 7c6d3cd01f82dfa02758da9ac3487e179308ce19 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 7 Feb 2014 13:46:59 -0800 Subject: [PATCH] fix broken build from NetworkPacket --- libraries/shared/src/NetworkPacket.cpp | 4 +++- libraries/shared/src/NetworkPacket.h | 4 +--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/shared/src/NetworkPacket.cpp b/libraries/shared/src/NetworkPacket.cpp index bc4f8f8cd8..1671dc2435 100644 --- a/libraries/shared/src/NetworkPacket.cpp +++ b/libraries/shared/src/NetworkPacket.cpp @@ -8,9 +8,11 @@ // A really simple class that stores a network packet between being received and being processed // +#include #include #include -#include + +#include "SharedUtil.h" #include "NetworkPacket.h" diff --git a/libraries/shared/src/NetworkPacket.h b/libraries/shared/src/NetworkPacket.h index be15d31ee2..0875b9f131 100644 --- a/libraries/shared/src/NetworkPacket.h +++ b/libraries/shared/src/NetworkPacket.h @@ -18,9 +18,7 @@ #include #endif -#include "HifiSockAddr.h" - -#include "SharedUtil.h" // for MAX_PACKET_SIZE +#include "NodeList.h" /// Storage of not-yet processed inbound, or not yet sent outbound generic UDP network packet class NetworkPacket {