From 70d2f16ca36837e6963a7587e57e8c31fd06d78d Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Fri, 14 Nov 2014 17:17:26 +0000 Subject: [PATCH] Removed dependency to Standard library header --- .../protocols/NTPClient_HelloWorld/NTPClient/NTPClient.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/libraries/tests/net/protocols/NTPClient_HelloWorld/NTPClient/NTPClient.h b/libraries/tests/net/protocols/NTPClient_HelloWorld/NTPClient/NTPClient.h index 598bdc31c3..e0373784f3 100644 --- a/libraries/tests/net/protocols/NTPClient_HelloWorld/NTPClient/NTPClient.h +++ b/libraries/tests/net/protocols/NTPClient_HelloWorld/NTPClient/NTPClient.h @@ -24,12 +24,6 @@ NTP Client header file #ifndef NTPCLIENT_H_ #define NTPCLIENT_H_ -#include - -using std::uint8_t; -using std::uint16_t; -using std::uint32_t; - #include "UDPSocket.h" #define NTP_DEFAULT_PORT 123 @@ -95,8 +89,6 @@ private: } __attribute__ ((packed)); UDPSocket m_sock; - }; - #endif /* NTPCLIENT_H_ */