summaryrefslogtreecommitdiff
path: root/cpp/unpack.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/unpack.hpp')
-rw-r--r--cpp/unpack.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/unpack.hpp b/cpp/unpack.hpp
index ae536c9..9bda544 100644
--- a/cpp/unpack.hpp
+++ b/cpp/unpack.hpp
@@ -12,6 +12,9 @@
namespace msgpack {
+static const size_t UNPACKER_INITIAL_BUFFER_SIZE = MSGPACK_UNPACKER_INITIAL_BUFFER_SIZE;
+
+
struct unpack_error : public std::runtime_error {
unpack_error(const std::string& msg) :
std::runtime_error(msg) { }