summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2009-12-10 06:19:53 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2009-12-10 06:19:53 +0900
commit7ce866ad7c2884f0b01ee77d99d2f9e01217fcdf (patch)
tree653062053c283a41d4999437eda6fa29e91471ef /cpp
parent0ae1965f6b492efb71f7457ba1dec48ae6110399 (diff)
downloadmsgpack-python-7ce866ad7c2884f0b01ee77d99d2f9e01217fcdf.tar.gz
msgpack template: architecture specific endian conversion
Diffstat (limited to 'cpp')
-rw-r--r--cpp/object.hpp1
-rw-r--r--cpp/pack.hpp3
2 files changed, 1 insertions, 3 deletions
diff --git a/cpp/object.hpp b/cpp/object.hpp
index 9ee575f..ed2e290 100644
--- a/cpp/object.hpp
+++ b/cpp/object.hpp
@@ -20,7 +20,6 @@
#include "msgpack/object.h"
#include "msgpack/pack.hpp"
-#include <stdint.h>
#include <string.h>
#include <stdexcept>
#include <typeinfo>
diff --git a/cpp/pack.hpp b/cpp/pack.hpp
index c8e37eb..9c291c1 100644
--- a/cpp/pack.hpp
+++ b/cpp/pack.hpp
@@ -18,10 +18,9 @@
#ifndef MSGPACK_PACK_HPP__
#define MSGPACK_PACK_HPP__
-#include <arpa/inet.h> // __BYTE_ORDER
+#include "msgpack/pack_define.h"
#include <stdexcept>
#include <limits.h>
-#include "msgpack/pack_define.h"
namespace msgpack {