From 752d70e5bf5812f7d570b0f121177d18c7f199c5 Mon Sep 17 00:00:00 2001 From: Shawn Silverman Date: Mon, 18 Feb 2019 11:41:57 -0800 Subject: [PATCH] Moving the cstring include to SIPHandler.cpp from SIPHandler.h. --- examples/SIPHandler/SIPHandler.cpp | 3 +++ examples/SIPHandler/SIPHandler.h | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/SIPHandler/SIPHandler.cpp b/examples/SIPHandler/SIPHandler.cpp index 86e2abb..9e306d7 100644 --- a/examples/SIPHandler/SIPHandler.cpp +++ b/examples/SIPHandler/SIPHandler.cpp @@ -3,6 +3,9 @@ #include "SIPHandler.h" +// C++ includes +#include + // Gets a uint16_t value from the given array. uint16_t getUint16(const uint8_t *b) { return (uint16_t{b[0]} << 8) | uint16_t{b[1]}; diff --git a/examples/SIPHandler/SIPHandler.h b/examples/SIPHandler/SIPHandler.h index 8db00fc..35d38e9 100644 --- a/examples/SIPHandler/SIPHandler.h +++ b/examples/SIPHandler/SIPHandler.h @@ -6,7 +6,6 @@ // C++ includes #include -#include // Other includes #include