From 54f2228f78dae86335558e67cbec496693907bfc Mon Sep 17 00:00:00 2001 From: OwnageIsMagic Date: Wed, 6 Oct 2021 04:37:31 +0300 Subject: [PATCH] suppress warning (#39) MSVC warning C4100: 'x': unreferenced formal parameter --- include/boost/exception/info.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/exception/info.hpp b/include/boost/exception/info.hpp index 86d558b..3fd6681 100644 --- a/include/boost/exception/info.hpp +++ b/include/boost/exception/info.hpp @@ -31,7 +31,7 @@ boost template inline std::string - error_info_name( error_info const & x ) + error_info_name( error_info const & ) { return tag_type_name(); }