From b35117d7a62dadb69fa0ef29bba877099fe197a7 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sun, 22 Oct 2017 15:06:09 +0200 Subject: [PATCH] Remove unused named parameter in bundled boost --- .../include/boost/property_tree/ptree_serialization.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundled/boost-1.62.0/include/boost/property_tree/ptree_serialization.hpp b/bundled/boost-1.62.0/include/boost/property_tree/ptree_serialization.hpp index a8181ca3b7..788a6a0371 100644 --- a/bundled/boost-1.62.0/include/boost/property_tree/ptree_serialization.hpp +++ b/bundled/boost-1.62.0/include/boost/property_tree/ptree_serialization.hpp @@ -41,7 +41,7 @@ namespace boost { namespace property_tree template inline void save(Archive &ar, const basic_ptree &t, - const unsigned int file_version) + const unsigned int /*file_version*/) { using namespace boost::serialization; stl::save_collection >(ar, t); @@ -99,7 +99,7 @@ namespace boost { namespace property_tree template inline void load(Archive &ar, basic_ptree &t, - const unsigned int file_version) + const unsigned int /*file_version*/) { namespace bsl = boost::serialization; -- 2.39.5