diff options
-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_; }; |