[pkg-boost-commits] r14560 - in boost/trunk/debian: . patches

Steven Michael Robbins smr at alioth.debian.org
Mon Jan 18 04:18:36 UTC 2010


Author: smr
Date: 2010-01-18 04:18:35 +0000 (Mon, 18 Jan 2010)
New Revision: 14560

Modified:
   boost/trunk/debian/changelog
   boost/trunk/debian/patches/date_time_date_formatting_hpp.patch
Log:
Fix date_formatting patch; error was caught in gcc 4.5.

Modified: boost/trunk/debian/changelog
===================================================================
--- boost/trunk/debian/changelog	2010-01-15 01:57:36 UTC (rev 14559)
+++ boost/trunk/debian/changelog	2010-01-18 04:18:35 UTC (rev 14560)
@@ -1,3 +1,10 @@
+boost1.41 (1.41.0-3) unstable; urgency=low
+
+  * patches/date_time_date_formatting_hpp.patch: Change
+    std::locale::locale() to std::locale().  Closes: #564860.
+
+ -- Steve M. Robbins <smr at debian.org>  Sun, 17 Jan 2010 22:17:39 -0600
+
 boost1.41 (1.41.0-2) unstable; urgency=low
 
   * patches/boost-graph-printf.patch: New.  Include stdio.h, to define

Modified: boost/trunk/debian/patches/date_time_date_formatting_hpp.patch
===================================================================
--- boost/trunk/debian/patches/date_time_date_formatting_hpp.patch	2010-01-15 01:57:36 UTC (rev 14559)
+++ boost/trunk/debian/patches/date_time_date_formatting_hpp.patch	2010-01-18 04:18:35 UTC (rev 14560)
@@ -12,7 +12,7 @@
 +      // of year with comma or other character (for example 2,008).
 +      ss.imbue(std::locale::classic());
        ss << ymd.year;
-+      ss.imbue(std::locale::locale());
++      ss.imbue(std::locale());
 +
        if (format_type::has_date_sep_chars()) {
          ss << format_type::month_sep_char();




More information about the pkg-boost-commits mailing list