aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/date-time/mysql/posix-time-traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/boost/date-time/mysql/posix-time-traits.hxx')
-rw-r--r--odb/boost/date-time/mysql/posix-time-traits.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/odb/boost/date-time/mysql/posix-time-traits.hxx b/odb/boost/date-time/mysql/posix-time-traits.hxx
index df79cef..519dc83 100644
--- a/odb/boost/date-time/mysql/posix-time-traits.hxx
+++ b/odb/boost/date-time/mysql/posix-time-traits.hxx
@@ -52,6 +52,7 @@ namespace odb
else
{
is_null = false;
+ i.neg = false;
const date& d (v.date ());
i.year = d.year ();
@@ -104,6 +105,7 @@ namespace odb
else
{
is_null = false;
+ i.neg = false;
const date& d (v.date ());
i.year = d.year ();
@@ -157,11 +159,11 @@ namespace odb
else
{
is_null = false;
+ i.neg = v.is_negative ();
i.day = 0;
i.hour = std::abs (v.hours ());
i.minute = std::abs (v.minutes ());
i.second = std::abs (v.seconds ());
- i.neg = v.is_negative ();
}
}
};