From 801cee821949ccafd644b06364c0a2c01148e63a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 3 Jul 2012 16:35:38 +0200 Subject: Add template qualifiers that are missing according to Clang 3.1 --- odb/lazy-pointer-traits.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odb/lazy-pointer-traits.hxx') diff --git a/odb/lazy-pointer-traits.hxx b/odb/lazy-pointer-traits.hxx index 5273db1..f284ba0 100644 --- a/odb/lazy-pointer-traits.hxx +++ b/odb/lazy-pointer-traits.hxx @@ -34,7 +34,7 @@ namespace odb static typename object_traits::id_type object_id (const pointer_type& p) { - return p.object_id (); + return p.template object_id (); } }; @@ -59,7 +59,7 @@ namespace odb static typename object_traits::id_type object_id (const pointer_type& p) { - return p.object_id (); + return p.template object_id (); } }; @@ -85,7 +85,7 @@ namespace odb static typename object_traits::id_type object_id (const pointer_type& p) { - return p.object_id (); + return p.template object_id (); } }; @@ -110,7 +110,7 @@ namespace odb static typename object_traits::id_type object_id (const pointer_type& p) { - return p.object_id (); + return p.template object_id (); } }; -- cgit v1.1