Skip to content

Commit

Permalink
Moving the cstring include to SIPHandler.cpp from SIPHandler.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssilverman committed Feb 18, 2019
1 parent 9580b4a commit 752d70e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions examples/SIPHandler/SIPHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

#include "SIPHandler.h"

// C++ includes
#include <cstring>

// 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]};
Expand Down
1 change: 0 additions & 1 deletion examples/SIPHandler/SIPHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

// C++ includes
#include <cstdint>
#include <cstring>

// Other includes
#include <TeensyDMX.h>
Expand Down

0 comments on commit 752d70e

Please sign in to comment.