]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Re-apply patch 20228 to new version of boost.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 1 Jul 2010 03:35:26 +0000 (03:35 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 1 Jul 2010 03:35:26 +0000 (03:35 +0000)
git-svn-id: https://svn.dealii.org/trunk@21427 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/contrib/boost/include/boost/date_time/gregorian/conversion.hpp
deal.II/contrib/boost/include/boost/date_time/posix_time/conversion.hpp

index f35796ee7fcf052611dbe09a0ae5e4001635ba6f..5b0d0ca5336b2e6629e60116eca674b50321066e 100644 (file)
@@ -41,7 +41,7 @@ namespace gregorian {
         boost::throw_exception(std::out_of_range(s));
     }
 
-    std::tm datetm = {}; // zero initialization is needed for extension members, like tm_zone
+    std::tm datetm = std::tm(); // zero initialization is needed for extension members, like tm_zone
     boost::gregorian::date::ymd_type ymd = d.year_month_day();
     datetm.tm_year = ymd.year - 1900;
     datetm.tm_mon = ymd.month - 1;
index 9cdb86479084bd6b7e9430cb9f714145448aafb6..13aa42f67e305e9c6ff42e7c06ceea8b538df3bb 100644 (file)
@@ -43,7 +43,7 @@ namespace posix_time {
   //! Convert a time_duration to a tm structure truncating any fractional seconds and zeroing fields for date components
   inline
   std::tm to_tm(const boost::posix_time::time_duration& td) {
-    std::tm timetm = {};
+    std::tm timetm = std::tm();
     timetm.tm_hour = date_time::absolute_value(td.hours());
     timetm.tm_min = date_time::absolute_value(td.minutes());
     timetm.tm_sec = date_time::absolute_value(td.seconds());

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.