|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r50386 - in sandbox/filesystem-v3: boost/filesystem libs/filesystem/example libs/filesystem/src libs/filesystem/test
From: bdawes_at_[hidden]
Date: 2008-12-26 07:53:56
Author: bemandawes
Date: 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
New Revision: 50386
URL: http://svn.boost.org/trac/boost/changeset/50386
Log:
filesystem-v3: increase nominal line length from 80 to 90 characters.
Text files modified:
sandbox/filesystem-v3/boost/filesystem/config.hpp | 14 +++---
sandbox/filesystem-v3/boost/filesystem/exception.hpp | 2
sandbox/filesystem-v3/boost/filesystem/fstream.hpp | 12 ++--
sandbox/filesystem-v3/boost/filesystem/operations.hpp | 82 ++++++++++++++++++++--------------------
sandbox/filesystem-v3/boost/filesystem/path.hpp | 62 +++++++++++++++---------------
sandbox/filesystem-v3/libs/filesystem/example/tchar.cpp | 2
sandbox/filesystem-v3/libs/filesystem/src/operations.cpp | 66 ++++++++++++++++----------------
sandbox/filesystem-v3/libs/filesystem/src/portability.cpp | 6 +-
sandbox/filesystem-v3/libs/filesystem/test/convenience_test.cpp | 2
sandbox/filesystem-v3/libs/filesystem/test/operations_test.cpp | 2
sandbox/filesystem-v3/libs/filesystem/test/operations_unit_test.cpp | 4
sandbox/filesystem-v3/libs/filesystem/test/path_test.cpp | 2
sandbox/filesystem-v3/libs/filesystem/test/path_unit_test.cpp | 34 ++++++++--------
13 files changed, 145 insertions(+), 145 deletions(-)
Modified: sandbox/filesystem-v3/boost/filesystem/config.hpp
==============================================================================
--- sandbox/filesystem-v3/boost/filesystem/config.hpp (original)
+++ sandbox/filesystem-v3/boost/filesystem/config.hpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// boost/filesystem/config.hpp ---------------------------------------------//
+// boost/filesystem/config.hpp -------------------------------------------------------//
// Copyright Beman Dawes 2003
@@ -7,14 +7,14 @@
// See library home page at http://www.boost.org/libs/filesystem
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
#ifndef BOOST_FILESYSTEM_CONFIG_HPP
#define BOOST_FILESYSTEM_CONFIG_HPP
#define BOOST_FILESYSTEM_I18N // aid users wishing to compile several versions
-// ability to change namespace aids path_table.cpp ------------------------//
+// ability to change namespace aids path_table.cpp ----------------------------------//
#ifndef BOOST_FILESYSTEM_NAMESPACE
# define BOOST_FILESYSTEM_NAMESPACE filesystem
#endif
@@ -25,7 +25,7 @@
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp>
-// determine platform ------------------------------------------------------//
+// determine platform ----------------------------------------------------------------//
// BOOST_POSIX_API or BOOST_WINDOWS_API specify which API to use
@@ -57,13 +57,13 @@
# define BOOST_WINDOWS_PATH
# endif
-// narrow support only for badly broken compilers or libraries -------------//
+// narrow support only for badly broken compilers or libraries -----------------------//
# if defined(BOOST_NO_STD_WSTRING) || defined(BOOST_NO_SFINAE) || defined(BOOST_NO_STD_LOCALE) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x592))
# define BOOST_FILESYSTEM_NARROW_ONLY
# endif
-// enable dynamic linking on Windows ---------------------------------------//
+// enable dynamic linking on Windows -------------------------------------------------//
# if (defined(BOOST_ALL_DYN_LINK) || defined(BOOST_FILESYSTEM_DYN_LINK)) && defined(__BORLANDC__) && defined(__WIN32__)
# error Dynamic linking Boost.Filesystem does not work for Borland; use static linking instead
@@ -89,7 +89,7 @@
#define BOOST_FILESYSTEM_DECL
#endif
-// enable automatic library variant selection ------------------------------//
+// enable automatic library variant selection ----------------------------------------//
#if !defined(BOOST_FILESYSTEM_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_FILESYSTEM_NO_LIB)
//
Modified: sandbox/filesystem-v3/boost/filesystem/exception.hpp
==============================================================================
--- sandbox/filesystem-v3/boost/filesystem/exception.hpp (original)
+++ sandbox/filesystem-v3/boost/filesystem/exception.hpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// boost/filesystem/exception.hpp -------------------------------------------//
+// boost/filesystem/exception.hpp -----------------------------------------------------//
// Copyright Beman Dawes 2003
// Use, modification, and distribution is subject to the Boost Software
Modified: sandbox/filesystem-v3/boost/filesystem/fstream.hpp
==============================================================================
--- sandbox/filesystem-v3/boost/filesystem/fstream.hpp (original)
+++ sandbox/filesystem-v3/boost/filesystem/fstream.hpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// boost/filesystem/fstream.hpp --------------------------------------------//
+// boost/filesystem/fstream.hpp ------------------------------------------------------//
// Copyright Beman Dawes 2002.
// Use, modification, and distribution is subject to the Boost Software
@@ -7,7 +7,7 @@
// See library home page at http://www.boost.org/libs/filesystem
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
#ifndef BOOST_FILESYSTEM_FSTREAM_HPP
#define BOOST_FILESYSTEM_FSTREAM_HPP
@@ -255,7 +255,7 @@
# ifndef BOOST_FILESYSTEM_NARROW_ONLY
-// basic_filebuf definitions -----------------------------------------------//
+// basic_filebuf definitions ---------------------------------------------------------//
template <class charT, class traits>
template<class Path>
@@ -277,7 +277,7 @@
return this->BOOST_NESTED_TEMPLATE open<wpath>( file_ph, mode );
}
-// basic_ifstream definitions ----------------------------------------------//
+// basic_ifstream definitions --------------------------------------------------------//
template <class charT, class traits> template<class Path>
basic_ifstream<charT,traits>::basic_ifstream(const Path & file_ph,
@@ -343,7 +343,7 @@
mode ).c_str(), mode | std::ios_base::in );
}
-// basic_ofstream definitions ----------------------------------------------//
+// basic_ofstream definitions --------------------------------------------------------//
template <class charT, class traits> template<class Path>
basic_ofstream<charT,traits>::basic_ofstream(const Path & file_ph,
@@ -409,7 +409,7 @@
mode ).c_str(), mode | std::ios_base::out );
}
-// basic_fstream definitions -----------------------------------------------//
+// basic_fstream definitions ---------------------------------------------------------//
template <class charT, class traits> template<class Path>
basic_fstream<charT,traits>::basic_fstream(const Path & file_ph,
Modified: sandbox/filesystem-v3/boost/filesystem/operations.hpp
==============================================================================
--- sandbox/filesystem-v3/boost/filesystem/operations.hpp (original)
+++ sandbox/filesystem-v3/boost/filesystem/operations.hpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// boost/filesystem/operations.hpp -----------------------------------------//
+// boost/filesystem/operations.hpp ---------------------------------------------------//
// Copyright Beman Dawes 2002-2008
// Copyright Jan Langer 2002
@@ -10,7 +10,7 @@
// See library home page at http://www.boost.org/libs/filesystem
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
/*
* TODO List
*
@@ -29,7 +29,7 @@
* Add the push_directory class from tools/release/required_files.cpp
*/
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
#ifndef BOOST_FILESYSTEM_OPERATIONS_HPP
#define BOOST_FILESYSTEM_OPERATIONS_HPP
@@ -62,18 +62,18 @@
namespace std { using ::time_t; }
# endif
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
namespace boost
{
namespace filesystem
{
-//----------------------------------------------------------------------------//
-// //
-// support classes and enums //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// support classes and enums //
+// //
+//--------------------------------------------------------------------------------------//
enum file_type
{
@@ -129,11 +129,11 @@
boost::uintmax_t available; // <= free
};
-//----------------------------------------------------------------------------//
-// //
-// query functions //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// query functions //
+// //
+//--------------------------------------------------------------------------------------//
BOOST_FILESYSTEM_DECL
file_status status( const path & p,
@@ -175,12 +175,12 @@
BOOST_FILESYSTEM_DECL
bool is_empty( const path & p, system::error_code & ec = system::throws );
-//----------------------------------------------------------------------------//
-// //
-// operational functions //
-// in alphabetical order, unless otherwise noted //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// operational functions //
+// in alphabetical order, unless otherwise noted //
+// //
+//--------------------------------------------------------------------------------------//
BOOST_FILESYSTEM_DECL // declaration must precede complete()
path initial_path( system::error_code & ec = system::throws );
@@ -252,11 +252,11 @@
BOOST_FILESYSTEM_DECL
path system_complete( const path & p, system::error_code & ec = system::throws );
-//----------------------------------------------------------------------------//
-// //
-// directory_entry //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// directory_entry //
+// //
+//--------------------------------------------------------------------------------------//
// GCC has a problem with a member function named path within a namespace or
// sub-namespace that also has a class named path. The workaround is to always
@@ -323,11 +323,11 @@
}; // directory_entry
-//----------------------------------------------------------------------------//
-// //
-// directory_iterator helpers //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// directory_iterator helpers //
+// //
+//--------------------------------------------------------------------------------------//
class directory_iterator;
@@ -373,11 +373,11 @@
} // namespace detail
-//----------------------------------------------------------------------------//
-// //
-// directory_iterator //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// directory_iterator //
+// //
+//--------------------------------------------------------------------------------------//
class directory_iterator
: public boost::iterator_facade<
@@ -425,11 +425,11 @@
{ return m_imp == rhs.m_imp; }
};
-//----------------------------------------------------------------------------//
-// //
-// class filesystem_error //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// class filesystem_error //
+// //
+//--------------------------------------------------------------------------------------//
class filesystem_error : public system::system_error
{
@@ -652,7 +652,7 @@
boost::shared_ptr<m_imp> m_imp_ptr;
};
-// test helper -------------------------------------------------------------//
+// test helper -----------------------------------------------------------------------//
// Not part of the documented interface since false positives are possible;
// there is no law that says that an OS that has large stat.st_size
Modified: sandbox/filesystem-v3/boost/filesystem/path.hpp
==============================================================================
--- sandbox/filesystem-v3/boost/filesystem/path.hpp (original)
+++ sandbox/filesystem-v3/boost/filesystem/path.hpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// filesystem path.hpp -----------------------------------------------------//
+// filesystem path.hpp ---------------------------------------------------------------//
// Copyright Beman Dawes 2002-2005, 2008
// Copyright Vladimir Prus 2002
@@ -12,7 +12,7 @@
// basename(), extension(), and change_extension() from the original
// filesystem/convenience.hpp header by Vladimir Prus.
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
/*
TO DO
@@ -55,7 +55,7 @@
-- the generic separator <-- makes it easier to write portable code
* Should the preferred native separator be available?
*/
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
#ifndef BOOST_FILESYSTEM_PATH_HPP
#define BOOST_FILESYSTEM_PATH_HPP
@@ -84,7 +84,7 @@
#include <boost/config/abi_prefix.hpp> // must be the last #include
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
namespace boost
{
@@ -126,11 +126,11 @@
String m_source;
};
- //--------------------------------------------------------------------------//
- // //
- // implementation details //
- // //
- //--------------------------------------------------------------------------//
+ //------------------------------------------------------------------------------------//
+ // //
+ // implementation details //
+ // //
+ //------------------------------------------------------------------------------------//
namespace detail
{
@@ -311,13 +311,13 @@
} // namespace detail
- //--------------------------------------------------------------------------//
- // //
- // traits and conversions //
- // //
- // users are permitted to add specializations for user defined types // //
- // //
- //--------------------------------------------------------------------------//
+ //------------------------------------------------------------------------------------//
+ // //
+ // traits and conversions //
+ // //
+ // users are permitted to add specializations for user defined types // //
+ // //
+ //------------------------------------------------------------------------------------//
template< class T > struct pathable_iterator { static const bool value = false; };
template<> struct pathable_iterator<const char *> { static const bool value = true; };
@@ -347,11 +347,11 @@
{ return s; }
# endif
- //--------------------------------------------------------------------------//
- // //
- // class path //
- // //
- //--------------------------------------------------------------------------//
+ //------------------------------------------------------------------------------------//
+ // //
+ // class path //
+ // //
+ //------------------------------------------------------------------------------------//
class BOOST_FILESYSTEM_DECL path
{
@@ -729,11 +729,11 @@
static void m_path_iterator_decrement( path::iterator & it );
};
- //--------------------------------------------------------------------------//
- // //
- // class path::iterator //
- // //
- //--------------------------------------------------------------------------//
+ //------------------------------------------------------------------------------------//
+ // //
+ // class path::iterator //
+ // //
+ //------------------------------------------------------------------------------------//
class path::iterator
: public boost::iterator_facade<
@@ -767,11 +767,11 @@
// m_pos == m_path_ptr->m_path.size()
}; // path::iterator
- //--------------------------------------------------------------------------//
- // //
- // non-member functions //
- // //
- //--------------------------------------------------------------------------//
+ //------------------------------------------------------------------------------------//
+ // //
+ // non-member functions //
+ // //
+ //------------------------------------------------------------------------------------//
inline bool operator<( const path & lhs, const path & rhs )
{
Modified: sandbox/filesystem-v3/libs/filesystem/example/tchar.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/example/tchar.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/example/tchar.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// Example use of Microsoft TCHAR ------------------------------------------//
+// Example use of Microsoft TCHAR ----------------------------------------------------//
// Copyright Beman Dawes 2008
Modified: sandbox/filesystem-v3/libs/filesystem/src/operations.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/src/operations.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/src/operations.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// operations.cpp ----------------------------------------------------------//
+// operations.cpp --------------------------------------------------------------------//
// Copyright 2002-2005 Beman Dawes
// Copyright 2001 Dietmar Kuehl
@@ -8,7 +8,7 @@
// See library home page at http://www.boost.org/libs/filesystem
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
// define BOOST_FILESYSTEM_SOURCE so that <boost/filesystem/config.hpp> knows
// the library is being built (possibly exporting rather than importing code)
@@ -159,11 +159,11 @@
# endif
-//----------------------------------------------------------------------------//
-// //
-// non-specific helpers //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// helpers (all operating systems) //
+// //
+//--------------------------------------------------------------------------------------//
namespace
{
@@ -314,11 +314,11 @@
return count;
}
-//----------------------------------------------------------------------------//
-// //
-// Windows-specific helpers //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// Windows-specific helpers //
+// //
+//--------------------------------------------------------------------------------------//
#if defined(BOOST_WINDOWS_API)
@@ -405,11 +405,11 @@
::GetProcAddress(
::GetModuleHandle(TEXT("kernel32.dll")), "CreateSymbolicLinkW") );
-//----------------------------------------------------------------------------//
-// //
-// POSIX-specific helpers //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// POSIX-specific helpers //
+// //
+//--------------------------------------------------------------------------------------//
# else
@@ -490,12 +490,12 @@
} // unnamed namespace
-//----------------------------------------------------------------------------//
-// //
-// operations functions declared in operations.hpp //
-// in alphabetic order //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// operations functions declared in operations.hpp //
+// in alphabetic order //
+// //
+//--------------------------------------------------------------------------------------//
namespace boost
{
@@ -1238,11 +1238,11 @@
//# endif
// } // namespace detail
-//----------------------------------------------------------------------------//
-// //
-// directory_entry //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// directory_entry //
+// //
+//--------------------------------------------------------------------------------------//
file_status
directory_entry::status( system::error_code & ec ) const
@@ -1276,11 +1276,11 @@
} // namespace filesystem
} // namespace boost
-//----------------------------------------------------------------------------//
-// //
-// directory_iterator //
-// //
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
+// //
+// directory_iterator //
+// //
+//--------------------------------------------------------------------------------------//
namespace
{
Modified: sandbox/filesystem-v3/libs/filesystem/src/portability.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/src/portability.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/src/portability.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// portability.cpp ---------------------------------------------------------//
+// portability.cpp -------------------------------------------------------------------//
// Copyright 2002-2005 Beman Dawes
// Use, modification, and distribution is subject to the Boost Software
@@ -7,7 +7,7 @@
// See library home page at http://www.boost.org/libs/filesystem
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
// define BOOST_FILESYSTEM_SOURCE so that <boost/filesystem/config.hpp> knows
// the library is being built (possibly exporting rather than importing code)
@@ -24,7 +24,7 @@
namespace std { using ::strerror; }
# endif
-//----------------------------------------------------------------------------//
+//--------------------------------------------------------------------------------------//
namespace
{
Modified: sandbox/filesystem-v3/libs/filesystem/test/convenience_test.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/test/convenience_test.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/test/convenience_test.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// libs/filesystem/test/convenience_test.cpp -------------------------------//
+// libs/filesystem/test/convenience_test.cpp -----------------------------------------//
// Copyright Beman Dawes, 2002
// Copyright Vladimir Prus, 2002
Modified: sandbox/filesystem-v3/libs/filesystem/test/operations_test.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/test/operations_test.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/test/operations_test.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// Boost operations_test.cpp -----------------------------------------------//
+// Boost operations_test.cpp ---------------------------------------------------------//
// Copyright Beman Dawes 2002.
Modified: sandbox/filesystem-v3/libs/filesystem/test/operations_unit_test.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/test/operations_unit_test.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/test/operations_unit_test.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// operations_unit_test.cpp ------------------------------------------------//
+// operations_unit_test.cpp ----------------------------------------------------------//
// Copyright Beman Dawes 2008
@@ -33,7 +33,7 @@
std::cout << file << '(' << line << "): test failed\n";
}
- // query_test ------------------------------------------------------------//
+ // query_test ----------------------------------------------------------------------//
void query_test()
{
Modified: sandbox/filesystem-v3/libs/filesystem/test/path_test.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/test/path_test.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/test/path_test.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// path_test program -------------------------------------------------------//
+// path_test program -----------------------------------------------------------------//
// Copyright Beman Dawes 2002
// Copyright Vladimir Prus 2002
Modified: sandbox/filesystem-v3/libs/filesystem/test/path_unit_test.cpp
==============================================================================
--- sandbox/filesystem-v3/libs/filesystem/test/path_unit_test.cpp (original)
+++ sandbox/filesystem-v3/libs/filesystem/test/path_unit_test.cpp 2008-12-26 07:53:54 EST (Fri, 26 Dec 2008)
@@ -1,4 +1,4 @@
-// filesystem3 path_unit_test.cpp ---------------------------------------- //
+// filesystem3 path_unit_test.cpp -------------------------------------------------- //
// Copyright Beman Dawes 2008
@@ -7,7 +7,7 @@
// See library home page at http://www.boost.org/libs/filesystem
-// ------------------------------------------------------------------------ //
+// ---------------------------------------------------------------------------------- //
//
// The purpose of this test is to ensure that each function in the public
// interface can be called with arguments of the appropriate types. It does
@@ -17,7 +17,7 @@
// For full functionality tests, including probes with many different argument
// values, see path_test.cpp and other test programs.
//
-// ------------------------------------------------------------------------ //
+// ---------------------------------------------------------------------------------- //
#include <boost/filesystem/path.hpp>
@@ -122,7 +122,7 @@
wstring ws(L"wstring iterators");
# endif // narrow only
- // test_constructors -----------------------------------------------------//
+ // test_constructors ---------------------------------------------------------------//
void test_constructors()
{
@@ -161,7 +161,7 @@
# endif
}
- // test_use_cases --------------------------------------------------------//
+ // test_use_cases ------------------------------------------------------------------//
string use( const path & p ) { return p; }
@@ -182,7 +182,7 @@
# endif
}
- // test_conversion_operators ---------------------------------------------//
+ // test_conversion_operators -------------------------------------------------------//
void test_conversion_operators()
{
@@ -214,7 +214,7 @@
}
-// // test_assignments ------------------------------------------------------//
+// // test_assignments ----------------------------------------------------------------//
//
// void test_assignments()
// {
@@ -276,7 +276,7 @@
//
// }
//
-// // test_observers --------------------------------------------------------//
+// // test_observers ------------------------------------------------------------------//
//
// void test_observers()
// {
@@ -303,7 +303,7 @@
//# endif
// }
//
-// // test_appends ----------------------------------------------------------//
+// // test_appends --------------------------------------------------------------------//
//
// void test_appends()
// {
@@ -311,7 +311,7 @@
//
// }
//
-// // test_relationals ------------------------------------------------------//
+// // test_relationals ----------------------------------------------------------------//
//
// void test_relationals()
// {
@@ -361,7 +361,7 @@
// CHECK( p2 >= p );
//}
//
-// // test_other_non_members ------------------------------------------------//
+// // test_other_non_members ----------------------------------------------------------//
//
// void test_other_non_members()
// {
@@ -397,7 +397,7 @@
//
// }
//
-// // test_modifiers --------------------------------------------------------//
+// // test_modifiers ------------------------------------------------------------------//
//
// void test_modifiers()
// {
@@ -405,7 +405,7 @@
//
// }
//
-// // test_iterators --------------------------------------------------------//
+// // test_iterators ------------------------------------------------------------------//
//
// void test_iterators()
// {
@@ -434,7 +434,7 @@
//
// }
//
-// // test_decompositions ---------------------------------------------------//
+// // test_decompositions -------------------------------------------------------------//
//
// void test_decompositions()
// {
@@ -482,7 +482,7 @@
// CHECK( path("/foo/bar.woo/baz").extension().string() == "" );
// }
//
-// // test_queries ----------------------------------------------------------//
+// // test_queries --------------------------------------------------------------------//
//
// void test_queries()
// {
@@ -511,7 +511,7 @@
//
// }
//
-// // test_locales ----------------------------------------------------------//
+// // test_locales --------------------------------------------------------------------//
//
// void test_locales()
// {
@@ -521,7 +521,7 @@
} // unnamed namespace
-// -------------------------------- main -----------------------------------//
+// -------------------------------- main ---------------------------------------------//
int main( int, char*[] )
{
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk