From 337e0ddc59e1f20b62bb8df505139b6026add140 Mon Sep 17 00:00:00 2001
From: Gennadiy Rozental
Date: Wed, 5 Oct 2011 09:34:51 +0000
Subject: [PATCH 1/5] eliminated unit_test_framework and BOOST_MESSAGE
[SVN r74724]
---
test/ios_state_unit_test.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/ios_state_unit_test.cpp b/test/ios_state_unit_test.cpp
index 72ce7b5..6a2451d 100644
--- a/test/ios_state_unit_test.cpp
+++ b/test/ios_state_unit_test.cpp
@@ -639,14 +639,14 @@ ios_word_saver_unit_test
// Unit test program
-boost::unit_test_framework::test_suite *
+boost::unit_test::test_suite *
init_unit_test_suite
(
int , // "argc" is unused
char * [] // "argv" is unused
)
{
- boost::unit_test_framework::test_suite * test
+ boost::unit_test::test_suite * test
= BOOST_TEST_SUITE( "I/O state saver test" );
test->add( BOOST_TEST_CASE(ios_flags_saver_unit_test) );
From 6e3e9c2ce71cd4dac020f80a6eb517ae199a9934 Mon Sep 17 00:00:00 2001
From: Beman Dawes
Date: Thu, 14 Mar 2013 12:53:24 +0000
Subject: [PATCH 2/5] 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