summaryrefslogtreecommitdiff
path: root/cpp/src/msgpack/pack.hpp
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2010-08-27 16:45:48 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2010-08-27 16:45:48 +0900
commit59ba8dec4ee082e8777047e6ae72e8b6998cdc79 (patch)
treea5e1e1f322cb21509d53b8059da2bfba013e9f06 /cpp/src/msgpack/pack.hpp
parentc8e351b31e28042c10f7406238636c92a64a696c (diff)
downloadmsgpack-python-59ba8dec4ee082e8777047e6ae72e8b6998cdc79.tar.gz
cpp: fixes include paths
Diffstat (limited to 'cpp/src/msgpack/pack.hpp')
-rw-r--r--cpp/src/msgpack/pack.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/msgpack/pack.hpp b/cpp/src/msgpack/pack.hpp
index ee90690..2f7dfa0 100644
--- a/cpp/src/msgpack/pack.hpp
+++ b/cpp/src/msgpack/pack.hpp
@@ -18,7 +18,7 @@
#ifndef MSGPACK_PACK_HPP__
#define MSGPACK_PACK_HPP__
-#include "msgpack/pack_define.h"
+#include "pack_define.h"
#include <stdexcept>
#include <limits.h>
@@ -137,7 +137,7 @@ inline void pack(Stream& s, const T& v)
#define msgpack_pack_append_buffer append_buffer
-#include "msgpack/pack_template.h"
+#include "pack_template.h"
template <typename Stream>