From bfb65201073e8c21837c42517d285e3b685c2702 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 4 Aug 2023 18:46:41 +0200 Subject: [PATCH] unnamed unused args --- include/boost/unordered/detail/foa/concurrent_table.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/unordered/detail/foa/concurrent_table.hpp b/include/boost/unordered/detail/foa/concurrent_table.hpp index c6bbb91b..81c6bc2f 100644 --- a/include/boost/unordered/detail/foa/concurrent_table.hpp +++ b/include/boost/unordered/detail/foa/concurrent_table.hpp @@ -1464,7 +1464,7 @@ private: } template - void save(Archive& ar,unsigned int version,std::true_type /* set */)const + void save(Archive& ar,unsigned int,std::true_type /* set */)const { auto lck=exclusive_access(); const std::size_t s=super::size(); @@ -1481,7 +1481,7 @@ private: } template - void save(Archive& ar,unsigned int version,std::false_type /* map */)const + void save(Archive& ar,unsigned int,std::false_type /* map */)const { using key_type=typename std::remove_const::type; using mapped_type=typename std::remove_const< @@ -1522,7 +1522,7 @@ private: } template - void load(Archive& ar,unsigned int version,std::true_type /* set */) + void load(Archive& ar,unsigned int,std::true_type /* set */) { auto lck=exclusive_access(); std::size_t s; @@ -1547,7 +1547,7 @@ private: } template - void load(Archive& ar,unsigned int version,std::false_type /* map */) + void load(Archive& ar,unsigned int,std::false_type /* map */) { using key_type=typename std::remove_const::type; using mapped_type=typename std::remove_const<