From 9e9ac45181539d3b19b10d21e4853a08d961769c Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 18 Sep 2007 21:01:26 +0000 Subject: [PATCH] quiet compiler warning [SVN r39375] --- include/boost/system/error_code.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/system/error_code.hpp b/include/boost/system/error_code.hpp index ed876be..739d840 100644 --- a/include/boost/system/error_code.hpp +++ b/include/boost/system/error_code.hpp @@ -431,7 +431,7 @@ namespace boost return "error: should never be called"; } - inline std::string error_category::message( int ev ) const + inline std::string error_category::message( int ) const { static std::string s("error: should never be called"); return s;