[pkg-boost-commits] r13992 - in boost/branches/debian-1.33.1: boost/date_time debian

Domenico Andreoli cavok at costa.debian.org
Thu Jul 20 10:35:25 UTC 2006


Author: cavok
Date: 2006-07-20 10:35:18 +0000 (Thu, 20 Jul 2006)
New Revision: 13992

Modified:
   boost/branches/debian-1.33.1/boost/date_time/time.hpp
   boost/branches/debian-1.33.1/boost/date_time/time_facet.hpp
   boost/branches/debian-1.33.1/debian/changelog
Log:
fixed some unused parameter warnings. closes #372800.

Modified: boost/branches/debian-1.33.1/boost/date_time/time.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/date_time/time.hpp	2006-07-20 10:26:54 UTC (rev 13991)
+++ boost/branches/debian-1.33.1/boost/date_time/time.hpp	2006-07-20 10:35:18 UTC (rev 13992)
@@ -77,14 +77,14 @@
     /*! Optional bool parameter will return time zone as an offset 
      * (ie "+07:00"). Empty string is returned for classes that do 
      * not use a time_zone */
-    std::string zone_name(bool as_offset=false) const
+    std::string zone_name(bool = false) const
     {
       return time_system::zone_name(time_);
     }
     /*! Optional bool parameter will return time zone as an offset 
      * (ie "+07:00"). Empty string is returned for classes that do 
      * not use a time_zone */
-    std::string zone_abbrev(bool as_offset=false) const
+    std::string zone_abbrev(bool = false) const
     {
       return time_system::zone_name(time_);
     }

Modified: boost/branches/debian-1.33.1/boost/date_time/time_facet.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/date_time/time_facet.hpp	2006-07-20 10:26:54 UTC (rev 13991)
+++ boost/branches/debian-1.33.1/boost/date_time/time_facet.hpp	2006-07-20 10:35:18 UTC (rev 13992)
@@ -197,7 +197,7 @@
 #endif
 
     //! sets default formats for ptime, local_date_time, and time_duration
-    explicit time_facet(::size_t a_ref = 0) 
+    explicit time_facet(::size_t = 0) 
       //: base_type(standard_format),
       : base_type(default_time_format), 
         m_time_duration_format(string_type(duration_sign_negative_only) + default_time_duration_format)

Modified: boost/branches/debian-1.33.1/debian/changelog
===================================================================
--- boost/branches/debian-1.33.1/debian/changelog	2006-07-20 10:26:54 UTC (rev 13991)
+++ boost/branches/debian-1.33.1/debian/changelog	2006-07-20 10:35:18 UTC (rev 13992)
@@ -2,10 +2,12 @@
 
   * CSS file for HTML documentation is now correctly installed.
     Closes: #358986.
+
+  * Added missing header in boost/bind.hpp.  Closes: #376747.
   
-  * Added missing header in boost/bind.hpp.  Closes: #376747.
+  * Fixed some unused parameter warnings.  Closes: #372800.
 
- -- Domenico Andreoli <cavok at debian.org>  Thu, 20 Jul 2006 12:25:45 +0200
+ -- Domenico Andreoli <cavok at debian.org>  Thu, 20 Jul 2006 12:33:49 +0200
 
 boost (1.33.1-4) unstable; urgency=low
 




More information about the pkg-boost-commits mailing list