From c359ed53b23b2a38c68bcbe89642ceaedbf53768 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sun, 15 Sep 2013 19:28:36 +0000 Subject: [PATCH] Fix unused parameter warning (fix #9106) [SVN r85683] --- include/boost/lexical_cast.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/lexical_cast.hpp b/include/boost/lexical_cast.hpp index 37d4fb4..25b7f61 100644 --- a/include/boost/lexical_cast.hpp +++ b/include/boost/lexical_cast.hpp @@ -1446,7 +1446,7 @@ namespace boost { } template - bool shl_real_type(const T& val, SomeCharT* begin, SomeCharT*& end) { + bool shl_real_type(const T& val, SomeCharT* /*begin*/, SomeCharT*& /*end*/) { lcast_set_precision(out_stream, &val); return shl_input_streamable(val); }