I believe in you, travis ci

This commit is contained in:
Colby Klein
2017-06-16 12:30:54 -07:00
parent f537e55d88
commit 7ef14c340d
+4 -4
View File
@@ -92,21 +92,21 @@ namespace
uint32_t EzSockets::sm_ntohl(uint32_t in)
{
return ::ntohl(in);
return ntohl(in);
}
uint16_t EzSockets::sm_ntohs(uint16_t in)
{
return ::ntohs(in);
return ntohs(in);
}
uint32_t EzSockets::sm_htonl(uint32_t in)
{
return ::htonl(in);
return htonl(in);
}
uint16_t EzSockets::sm_htons(uint16_t in) {
return ::htons(in);
return htons(in);
}
EzSockets::EzSockets()