Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions include/boost/algorithm/string/formatter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,15 @@ namespace boost {
Constructs an \c empty_formatter. Empty formatter always returns an empty
sequence.

\param - container used to select a correct value_type for the
resulting empty_container<>.
The argument is not used, it only selects a correct value_type for
the resulting empty_container<>.

\return An instance of the \c empty_formatter object.
*/
template<typename RangeT>
inline detail::empty_formatF<
BOOST_STRING_TYPENAME range_value<RangeT>::type>
empty_formatter(const RangeT&)
empty_formatter(const RangeT& /*Input*/)
{
return detail::empty_formatF<
BOOST_STRING_TYPENAME range_value<RangeT>::type>();
Expand Down