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

Modified Files:
        null_regex_traits.hpp 
Log Message:
work-arounds for gcc bugs and warnings

Index: null_regex_traits.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/traits/null_regex_traits.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- null_regex_traits.hpp       24 Apr 2006 16:28:11 -0000      1.7
+++ null_regex_traits.hpp       22 Oct 2006 05:11:38 -0000      1.8
@@ -58,7 +58,7 @@
     /// \return true.
     bool operator ==(null_regex_traits<char_type> const &that) const
     {
-        detail::ignore_unused(&that);
+        detail::ignore_unused(that);
         return true;
     }
 
@@ -67,7 +67,7 @@
     /// \return false.
     bool operator !=(null_regex_traits<char_type> const &that) const
     {
-        detail::ignore_unused(&that);
+        detail::ignore_unused(that);
         return false;
     }
 
@@ -164,8 +164,8 @@
     template<typename FwdIter>
     static string_type lookup_collatename(FwdIter begin, FwdIter end)
     {
-        detail::ignore_unused(&begin);
-        detail::ignore_unused(&end);
+        detail::ignore_unused(begin);
+        detail::ignore_unused(end);
         return string_type();
     }
 
@@ -179,9 +179,9 @@
     template<typename FwdIter>
     static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool 
icase)
     {
-        detail::ignore_unused(&begin);
-        detail::ignore_unused(&end);
-        detail::ignore_unused(&icase);
+        detail::ignore_unused(begin);
+        detail::ignore_unused(end);
+        detail::ignore_unused(icase);
         return 0;
     }
 
@@ -193,8 +193,8 @@
     /// \return false
     static bool isctype(char_type ch, char_class_type mask)
     {
-        detail::ignore_unused(&ch);
-        detail::ignore_unused(&mask);
+        detail::ignore_unused(ch);
+        detail::ignore_unused(mask);
         return false;
     }
 
@@ -205,8 +205,8 @@
     /// \return -1
     static int value(char_type ch, int radix)
     {
-        detail::ignore_unused(&ch);
-        detail::ignore_unused(&radix);
+        detail::ignore_unused(ch);
+        detail::ignore_unused(radix);
         return -1;
     }
 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to