aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/smart-ptr/lazy-pointer-traits.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-07-03 16:35:39 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-07-03 16:35:39 +0200
commitb7b8e270fd97671c61e805aa4271cf345d7113e7 (patch)
treefc16c88ba36cd1c43a1ad86331f3f72724eefdba /odb/boost/smart-ptr/lazy-pointer-traits.hxx
parentf7c7f67c92dc33586c64eb2bc02fe4649c0eebfb (diff)
Add template qualifiers that are missing according to Clang 3.1
Diffstat (limited to 'odb/boost/smart-ptr/lazy-pointer-traits.hxx')
-rw-r--r--odb/boost/smart-ptr/lazy-pointer-traits.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/boost/smart-ptr/lazy-pointer-traits.hxx b/odb/boost/smart-ptr/lazy-pointer-traits.hxx
index d616824..50fe7f4 100644
--- a/odb/boost/smart-ptr/lazy-pointer-traits.hxx
+++ b/odb/boost/smart-ptr/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> ();
}
};