From a62a5d6c69837e474f9cc7260017de3fe61a92eb Mon Sep 17 00:00:00 2001 From: frsyuki Date: Mon, 10 Aug 2009 18:33:35 +0900 Subject: [PATCH] c++: fix type.hpp --- cpp/Makefile.am | 1 + cpp/type.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/cpp/Makefile.am b/cpp/Makefile.am index 45cc13c4..f9d1fec5 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 2bd805d2..fafa6740 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"