From afca29f82408ec3fd1bd117a9f19f58f343ba3cc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 1 Feb 2014 06:53:03 +0200 Subject: Don't use toStdString() since it may not be available --- odb/qt/date-time/sqlite/qdate-traits.hxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'odb/qt/date-time/sqlite/qdate-traits.hxx') diff --git a/odb/qt/date-time/sqlite/qdate-traits.hxx b/odb/qt/date-time/sqlite/qdate-traits.hxx index 80879a7..b1d03d0 100644 --- a/odb/qt/date-time/sqlite/qdate-traits.hxx +++ b/odb/qt/date-time/sqlite/qdate-traits.hxx @@ -57,7 +57,10 @@ namespace odb { is_null = false; - std::string s (v.toString ("yyyy-MM-dd").toStdString ()); + // Cannot use toStdString() here since Qt could have been + // configured without the STL compatibility support. + // + std::string s (v.toString ("yyyy-MM-dd").toLatin1 ().constData ()); n = s.size (); if (n > i.capacity ()) -- cgit v1.1