From: bangerth Date: Thu, 1 Jul 2010 03:35:26 +0000 (+0000) Subject: Re-apply patch 20228 to new version of boost. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89177fd94b9d15b264e833a591259ff12dbd4036;p=dealii-svn.git Re-apply patch 20228 to new version of boost. git-svn-id: https://svn.dealii.org/trunk@21427 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/boost/include/boost/date_time/gregorian/conversion.hpp b/deal.II/contrib/boost/include/boost/date_time/gregorian/conversion.hpp index f35796ee7f..5b0d0ca533 100644 --- a/deal.II/contrib/boost/include/boost/date_time/gregorian/conversion.hpp +++ b/deal.II/contrib/boost/include/boost/date_time/gregorian/conversion.hpp @@ -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; diff --git a/deal.II/contrib/boost/include/boost/date_time/posix_time/conversion.hpp b/deal.II/contrib/boost/include/boost/date_time/posix_time/conversion.hpp index 9cdb864790..13aa42f67e 100644 --- a/deal.II/contrib/boost/include/boost/date_time/posix_time/conversion.hpp +++ b/deal.II/contrib/boost/include/boost/date_time/posix_time/conversion.hpp @@ -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());