aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2017-01-09 18:30:29 +0100
committerSzczepan Zalega <szczepan@nitrokey.com>2017-01-09 18:30:29 +0100
commitc6ba90ba1ca606b63373caaba16cb4fcc65d00f9 (patch)
tree54ded89f2dd97d91f6f3ce469f3a0981ca1e8d03 /include
parented5044da43172d86a1aa475473561a4818b7c69c (diff)
downloadlibnitrokey-c6ba90ba1ca606b63373caaba16cb4fcc65d00f9.tar.gz
libnitrokey-c6ba90ba1ca606b63373caaba16cb4fcc65d00f9.tar.bz2
Remove unused inttypes
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include')
-rw-r--r--include/CommandFailedException.h2
-rw-r--r--include/command_id.h2
-rw-r--r--include/device.h2
-rw-r--r--include/device_proto.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/include/CommandFailedException.h b/include/CommandFailedException.h
index 9b0c59e..8bcdcae 100644
--- a/include/CommandFailedException.h
+++ b/include/CommandFailedException.h
@@ -7,7 +7,7 @@
#include <exception>
#include <cstdint>
-#include <log.h>
+#include "log.h"
class CommandFailedException : public std::exception {
public:
diff --git a/include/command_id.h b/include/command_id.h
index 346b750..9d12f93 100644
--- a/include/command_id.h
+++ b/include/command_id.h
@@ -1,6 +1,6 @@
#ifndef COMMAND_ID_H
#define COMMAND_ID_H
-#include "inttypes.h"
+#include <stdint.h>
namespace nitrokey {
namespace proto {
diff --git a/include/device.h b/include/device.h
index 62c4073..f686fbd 100644
--- a/include/device.h
+++ b/include/device.h
@@ -2,7 +2,7 @@
#define DEVICE_H
#include <chrono>
#include <hidapi/hidapi.h>
-#include "inttypes.h"
+#include <stdint.h>
#define HID_REPORT_SIZE 65
diff --git a/include/device_proto.h b/include/device_proto.h
index 0953566..667b8db 100644
--- a/include/device_proto.h
+++ b/include/device_proto.h
@@ -8,7 +8,7 @@
#include <string>
#include <strings.h>
// a local version for compatibility with Windows
-#include "inttypes.h"
+#include <stdint.h>
#include "cxx_semantics.h"
#include "device.h"
#include "misc.h"