aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/date-time/sqlite/qtime-traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/qt/date-time/sqlite/qtime-traits.hxx')
-rw-r--r--odb/qt/date-time/sqlite/qtime-traits.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/odb/qt/date-time/sqlite/qtime-traits.hxx b/odb/qt/date-time/sqlite/qtime-traits.hxx
index 391df35..ad64ab5 100644
--- a/odb/qt/date-time/sqlite/qtime-traits.hxx
+++ b/odb/qt/date-time/sqlite/qtime-traits.hxx
@@ -57,7 +57,11 @@ namespace odb
{
is_null = false;
- std::string s (v.toString ("HH:mm:ss.zzz").toStdString ());
+ // Cannot use toStdString() here since Qt could have been
+ // configured without the STL compatibility support.
+ //
+ std::string s (
+ v.toString ("HH:mm:ss.zzz").toLatin1 ().constData ());
n = s.size ();
if (n > i.capacity ())