diff --git a/doc/quoted_manip.html b/doc/quoted_manip.html index c3e7362..14a3380 100644 --- a/doc/quoted_manip.html +++ b/doc/quoted_manip.html @@ -83,17 +83,20 @@ be preceded by an escape character, as will the escape character itself:
// manipulator for const std::basic_string& template <class Char, class Traits, class Alloc> - unspecified-type1 quoted(const std::basic_string<Char, Traits, Alloc>& string, Char escape='\\', Char delim='\"'); + unspecified-type1 quoted(const std::basic_string<Char, Traits, Alloc>& string, + Char escape='\\', Char delim='\"'); // manipulator for const C-string* template <class Char> - unspecified-type2 quoted(const Char* string, Char escape='\\', Char delim='\"'); + unspecified-type2 quoted(const Char* string, + Char escape='\\', Char delim='\"'); // manipulator for non-const std::basic_string& template <class Char, class Traits, class Alloc> - unspecified-type3 quoted(std::basic_string<Char, Traits, Alloc>& string, Char escape='\\', Char delim='\"'); + unspecified-type3 quoted(std::basic_string<Char, Traits, Alloc>& string, + Char escape='\\', Char delim='\"'); } }unspecified_type1
, unspecified_type2
,
@@ -155,7 +158,7 @@ form of the templates.
Distributed under the Boost Software License, Version 1.0. See www.boost.org/LICENSE_1_0.txt
Revised -20 June 2010
+08 March 2013