diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-07-19 23:13:07 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-07-19 23:13:07 +0200 |
commit | 06b0a16d2635dba071ea7967f32c2aabe2b9cbcc (patch) | |
tree | 0d5d9c40f0dbc8d1fadc89e1da897075ecc52a8a /ble | |
parent | ae2d05eee4ffcec4c0611d907779ce8ef61d3a6e (diff) | |
download | ble-toys-06b0a16d2635dba071ea7967f32c2aabe2b9cbcc.tar.gz ble-toys-06b0a16d2635dba071ea7967f32c2aabe2b9cbcc.tar.bz2 ble-toys-06b0a16d2635dba071ea7967f32c2aabe2b9cbcc.tar.xz ble-toys-06b0a16d2635dba071ea7967f32c2aabe2b9cbcc.zip |
o Trying to clean up includes a bit.
Diffstat (limited to 'ble')
-rw-r--r-- | ble/ByteBuffer.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ble/ByteBuffer.cpp b/ble/ByteBuffer.cpp index 66f9270..ff7c928 100644 --- a/ble/ByteBuffer.cpp +++ b/ble/ByteBuffer.cpp @@ -1,8 +1,7 @@ #include "ble/ByteBuffer.h" -#include <string.h> -#include <sstream> -#include <iomanip> #include <cassert> +#include <cstring> +#include <iomanip> using namespace std; |