From 6e3e9c2ce71cd4dac020f80a6eb517ae199a9934 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Thu, 14 Mar 2013 12:53:24 +0000 Subject: [PATCH] Editorial. Tweak spacing. [SVN r83424] --- doc/quoted_manip.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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

\ No newline at end of file