aboutsummaryrefslogtreecommitdiff
path: root/odb/tr1/lazy-pointer-traits.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-07-03 16:35:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-07-03 16:35:38 +0200
commit801cee821949ccafd644b06364c0a2c01148e63a (patch)
treed67052b766e6e35021694fab2473f88c643438d7 /odb/tr1/lazy-pointer-traits.hxx
parenta5a93dcba35e79bfa247d54991a59f389203507e (diff)
Add template qualifiers that are missing according to Clang 3.1
Diffstat (limited to 'odb/tr1/lazy-pointer-traits.hxx')
-rw-r--r--odb/tr1/lazy-pointer-traits.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/tr1/lazy-pointer-traits.hxx b/odb/tr1/lazy-pointer-traits.hxx
index 6fd1fbf..aefab8c 100644
--- a/odb/tr1/lazy-pointer-traits.hxx
+++ b/odb/tr1/lazy-pointer-traits.hxx
@@ -33,7 +33,7 @@ namespace odb
static typename object_traits<O>::id_type
object_id (const pointer_type& p)
{
- return p.object_id<O> ();
+ return p.template object_id<O> ();
}
};