diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-08-21 16:53:02 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-08-21 16:53:02 +0200 |
commit | b8886d66f1c2a55438757539824a9afb6ac014bb (patch) | |
tree | ac4475e53275fa507b6151552e6c58d394a6ca3c | |
parent | cb3d61d59d1236339bb7880e3273bb2ea5e69f5b (diff) | |
download | dabmux-b8886d66f1c2a55438757539824a9afb6ac014bb.tar.gz dabmux-b8886d66f1c2a55438757539824a9afb6ac014bb.tar.bz2 dabmux-b8886d66f1c2a55438757539824a9afb6ac014bb.zip |
Make EDI includes consistent
-rw-r--r-- | lib/edi/PFT.cpp | 2 | ||||
-rw-r--r-- | lib/edi/PFT.hpp | 5 | ||||
-rw-r--r-- | lib/edi/STIDecoder.cpp | 2 | ||||
-rw-r--r-- | lib/edi/buffer_unpack.hpp | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/lib/edi/PFT.cpp b/lib/edi/PFT.cpp index aff7929..158b206 100644 --- a/lib/edi/PFT.cpp +++ b/lib/edi/PFT.cpp @@ -20,7 +20,7 @@ * ------------------------------------------------------------------- */ -#include <stdio.h> +#include <cstdio> #include <cassert> #include <cstring> #include <sstream> diff --git a/lib/edi/PFT.hpp b/lib/edi/PFT.hpp index 779509b..208fd70 100644 --- a/lib/edi/PFT.hpp +++ b/lib/edi/PFT.hpp @@ -21,10 +21,11 @@ */ #pragma once -#include <stdio.h> +#include <cstdio> +#include <cstdint> #include <vector> #include <map> -#include <stdint.h> +#include <string> namespace EdiDecoder { namespace PFT { diff --git a/lib/edi/STIDecoder.cpp b/lib/edi/STIDecoder.cpp index ca8cead..aab93e0 100644 --- a/lib/edi/STIDecoder.cpp +++ b/lib/edi/STIDecoder.cpp @@ -22,7 +22,7 @@ #include "buffer_unpack.hpp" #include "crc.h" #include "Log.h" -#include <stdio.h> +#include <cstdio> #include <cassert> #include <sstream> diff --git a/lib/edi/buffer_unpack.hpp b/lib/edi/buffer_unpack.hpp index 05a1534..a996017 100644 --- a/lib/edi/buffer_unpack.hpp +++ b/lib/edi/buffer_unpack.hpp @@ -20,7 +20,7 @@ */ #pragma once -#include <stdint.h> +#include <cstdint> namespace EdiDecoder { |