summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2009-08-10 18:33:35 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2009-08-10 18:33:35 +0900
commita62a5d6c69837e474f9cc7260017de3fe61a92eb (patch)
treef3c29e6052c574a8abe9b92d7d8e6db2c04968fd
parent0627324da62922d332c75ec51525141329187beb (diff)
downloadmsgpack-python-a62a5d6c69837e474f9cc7260017de3fe61a92eb.tar.gz
c++: fix type.hpp
-rw-r--r--cpp/Makefile.am1
-rw-r--r--cpp/type.hpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/cpp/Makefile.am b/cpp/Makefile.am
index 45cc13c..f9d1fec 100644
--- a/cpp/Makefile.am
+++ b/cpp/Makefile.am
@@ -16,6 +16,7 @@ nobase_include_HEADERS = \
msgpack/type/float.hpp \
msgpack/type/int.hpp \
msgpack/type/list.hpp \
+ msgpack/type/deque.hpp \
msgpack/type/map.hpp \
msgpack/type/nil.hpp \
msgpack/type/pair.hpp \
diff --git a/cpp/type.hpp b/cpp/type.hpp
index 2bd805d..fafa674 100644
--- a/cpp/type.hpp
+++ b/cpp/type.hpp
@@ -2,6 +2,7 @@
#include "msgpack/type/float.hpp"
#include "msgpack/type/int.hpp"
#include "msgpack/type/list.hpp"
+#include "msgpack/type/deque.hpp"
#include "msgpack/type/map.hpp"
#include "msgpack/type/nil.hpp"
#include "msgpack/type/pair.hpp"