summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-04-12 14:35:21 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-04-12 14:35:21 (GMT)
commitb207ccba601f36aa254e2af5c202ed492a78feb6 (patch)
tree40f7ae8f162131e7e98ce2a601a52a5c96dc338a /3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp
parent9470b2eb602489b290f8df1aaf515712d9ea3dbf (diff)
downloadswift-b207ccba601f36aa254e2af5c202ed492a78feb6.zip
swift-b207ccba601f36aa254e2af5c202ed492a78feb6.tar.bz2
Avoid 'uninitialized member' warning in Boost.
Diffstat (limited to '3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp')
-rw-r--r--3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp b/3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp
index f35796e..4f625d4 100644
--- a/3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp
+++ b/3rdParty/Boost/src/boost/date_time/gregorian/conversion.hpp
@@ -41,7 +41,8 @@ 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;
+ memset(&datetm, 0, sizeof(std::tm));
boost::gregorian::date::ymd_type ymd = d.year_month_day();
datetm.tm_year = ymd.year - 1900;
datetm.tm_mon = ymd.month - 1;