Update of /cvsroot/boost/boost/boost/xpressive
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25990

Modified Files:
        match_results.hpp regex_compiler.hpp sub_match.hpp 
Log Message:
minor tweaks for newer, pickier versions of Doxygen

Index: match_results.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/match_results.hpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- match_results.hpp   30 Mar 2007 05:44:26 -0000      1.15
+++ match_results.hpp   17 Apr 2007 07:23:38 -0000      1.16
@@ -226,6 +226,8 @@
 struct match_results
 {
 private:
+    /// INTERNAL ONLY
+    ///
     struct dummy { int i_; };
     typedef int dummy::*bool_type;
 
@@ -337,8 +339,8 @@
     }
 
     /// If !(*this)[sub].matched then returns -1. Otherwise returns 
std::distance(base, (*this)[sub].first),
-    /// where base is the start iterator of the sequence that was searched. 
[Note – unless this is part
-    /// of a repeated search with a regex_iterator then base is the same as 
prefix().first – end note]
+    /// where base is the start iterator of the sequence that was searched. 
[Note - unless this is part
+    /// of a repeated search with a regex_iterator then base is the same as 
prefix().first - end note]
     difference_type position(size_type sub = 0) const
     {
         return this->sub_matches_[ sub ].matched ? std::distance(this->base_, 
this->sub_matches_[ sub ].first) : -1;

Index: regex_compiler.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/regex_compiler.hpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- regex_compiler.hpp  13 Mar 2007 06:41:51 -0000      1.12
+++ regex_compiler.hpp  17 Apr 2007 07:23:38 -0000      1.13
@@ -81,7 +81,7 @@
     // getloc
     /// Get the locale used by a regex_compiler.
     ///
-    /// \param loc The locale that this regex_compiler uses.
+    /// \return The locale used by this regex_compiler.
     locale_type getloc() const
     {
         return this->traits_.getloc();

Index: sub_match.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/sub_match.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- sub_match.hpp       22 Mar 2007 17:37:16 -0000      1.6
+++ sub_match.hpp       17 Apr 2007 07:23:38 -0000      1.7
@@ -58,6 +58,8 @@
   : std::pair<BidiIter, BidiIter>
 {
 private:
+    /// INTERNAL ONLY
+    ///
     struct dummy { int i_; };
     typedef int dummy::*bool_type;
 


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to