$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73213 - trunk/boost/filesystem/v3
From: bdawes_at_[hidden]
Date: 2011-07-18 07:28:38
Author: bemandawes
Date: 2011-07-18 07:28:38 EDT (Mon, 18 Jul 2011)
New Revision: 73213
URL: http://svn.boost.org/trac/boost/changeset/73213
Log:
Clarify codecvt comment
Text files modified: 
   trunk/boost/filesystem/v3/path.hpp |    12 ++++++------                            
   1 files changed, 6 insertions(+), 6 deletions(-)
Modified: trunk/boost/filesystem/v3/path.hpp
==============================================================================
--- trunk/boost/filesystem/v3/path.hpp	(original)
+++ trunk/boost/filesystem/v3/path.hpp	2011-07-18 07:28:38 EDT (Mon, 18 Jul 2011)
@@ -95,7 +95,7 @@
     //  TODO: rules needed for operating systems that use / or .
     //  differently, or format directory paths differently from file paths. 
     //
-    //  ************************************************************************
+    //  **********************************************************************************
     //
     //  More work needed: How to handle an operating system that may have
     //  slash characters or dot characters in valid filenames, either because
@@ -107,7 +107,7 @@
     //                                             ^^^^
     //  Note that 0x2F is the ASCII slash character
     //
-    //  ************************************************************************
+    //  **********************************************************************************
 
     //  Supported source arguments: half-open iterator range, container, c-array,
     //  and single pointer to null terminated string.
@@ -116,9 +116,9 @@
     //  multi-byte character strings which may have embedded nulls. Embedded null
     //  support is required for some Asian languages on Windows.
 
-    //  "const codecvt_type& cvt=codecvt()" default arguments are not used because some
-    //  compilers, such as Microsoft prior to VC++ 10, do not handle defaults correctly
-    //  in templates.
+    //  [defaults] "const codecvt_type& cvt=codecvt()" default arguments are not used
+    //  because some compilers, such as Microsoft prior to VC++ 10, do not handle defaults
+    //  correctly in templates.
 
     //  -----  constructors  -----
 
@@ -147,7 +147,7 @@
 
     template <class Source>
     path(Source const& source, const codecvt_type& cvt)
-    //  see note above explaining why codecvt() default arguments are not used
+    //  see [defaults] note above explaining why codecvt() default arguments are not used
     {
       path_traits::dispatch(source, m_pathname, cvt);
     }