diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-22 08:33:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-22 08:33:30 +0200 |
commit | 69043a72696dd584d1a36f737c22bc570f8c433f (patch) | |
tree | 05f720c6606670d9642f7d0d9fe2262bb8e2d273 | |
parent | a28444da4ca6adb016f719e032174ccb54e1692e (diff) |
Workaround for Sun CC
-rw-r--r-- | odb/object-result.hxx | 2 | ||||
-rw-r--r-- | odb/view-result.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/odb/object-result.hxx b/odb/object-result.hxx index 235b682..b4ef810 100644 --- a/odb/object-result.hxx +++ b/odb/object-result.hxx @@ -364,7 +364,7 @@ namespace odb } private: - friend class result<const T, class_object>; + friend class result<const T>; details::shared_ptr<result_impl_type> impl_; }; diff --git a/odb/view-result.hxx b/odb/view-result.hxx index ef9ffd8..25fd0f5 100644 --- a/odb/view-result.hxx +++ b/odb/view-result.hxx @@ -359,7 +359,7 @@ namespace odb } private: - friend class result<const T, class_view>; + friend class result<const T>; details::shared_ptr<result_impl_type> impl_; }; |