From: Daniel Arndt Date: Sun, 22 Oct 2017 13:06:09 +0000 (+0200) Subject: Remove unused named parameter in bundled boost X-Git-Tag: v9.0.0-rc1~903^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b35117d7a62dadb69fa0ef29bba877099fe197a7;p=dealii.git Remove unused named parameter in bundled boost --- 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;