From e0dc0c1f005f36063e08c61de2754c4360103695 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 3 Jul 2012 16:35:39 +0200 Subject: Add template qualifiers that are missing according to Clang 3.1 --- odb/qt/smart-ptr/lazy-ptr.txx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'odb/qt/smart-ptr/lazy-ptr.txx') diff --git a/odb/qt/smart-ptr/lazy-ptr.txx b/odb/qt/smart-ptr/lazy-ptr.txx index 25e3636..03b98bb 100644 --- a/odb/qt/smart-ptr/lazy-ptr.txx +++ b/odb/qt/smart-ptr/lazy-ptr.txx @@ -30,7 +30,7 @@ equal (const QLazySharedPointer& r) const typedef typename odb::object_traits::object_type object_type2; return i_.database () == r.i_.database () && - objectId () == r.objectId (); + objectId () == r.template objectId (); } // @@ -90,8 +90,8 @@ toStrongRef () const else { if (i_) - return QLazySharedPointer (*i_.database (), - i_.template object_id ()); + return QLazySharedPointer ( + *i_.database (), i_.template object_id ()); else return QLazySharedPointer (); } -- cgit v1.1