aboutsummaryrefslogtreecommitdiff
path: root/odb/details/shared-ptr.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-07-30 17:09:36 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-07-30 17:09:36 +0200
commit8138a68a75286eebc04557019ab0f5947d78eb99 (patch)
tree0d84e9a830b7c40e093c5904bc5d4b68503b8369 /odb/details/shared-ptr.hxx
parent2e80ed4e860fe45fa4558dc0322fa96b27743793 (diff)
Try to work around xlC 11.1 warning/errors
Diffstat (limited to 'odb/details/shared-ptr.hxx')
-rw-r--r--odb/details/shared-ptr.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/odb/details/shared-ptr.hxx b/odb/details/shared-ptr.hxx
index 2bb8efc..bb21386 100644
--- a/odb/details/shared-ptr.hxx
+++ b/odb/details/shared-ptr.hxx
@@ -16,7 +16,8 @@ namespace odb
namespace details
{
template <typename X>
- class shared_ptr: bits::counter_ops<typename bits::counter_type<X>::r, X>
+ class shared_ptr:
+ private bits::counter_ops<typename bits::counter_type<X>::r, X>
{
typedef bits::counter_ops<typename bits::counter_type<X>::r, X> base;