From 5f52ec50302f02380ba0fedd16784eb838a20381 Mon Sep 17 00:00:00 2001 From: Dror Levin Date: Sun, 4 Jan 2015 13:43:55 +0200 Subject: [PATCH] Comment unused variable name Prevents unused parameter error from gcc when compiled with -Wextra. --- include/msgpack/unpack.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/msgpack/unpack.hpp b/include/msgpack/unpack.hpp index 8d3f26d9..67c78713 100644 --- a/include/msgpack/unpack.hpp +++ b/include/msgpack/unpack.hpp @@ -541,7 +541,7 @@ private: } template - static void check_ext_size(std::size_t size) { + static void check_ext_size(std::size_t /*size*/) { } private: