Skip to content

Commit 87442d1

Browse files
fix leftover of base class impl w/o friend funcs
Signed-off-by: Tikhomirova, Kseniya <[email protected]>
1 parent 821a306 commit 87442d1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libsycl/include/sycl/__impl/detail/obj_base.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ namespace detail {
2929
template <typename Impl, typename SyclObject> class ObjBase;
3030
template <typename Impl, typename SyclObject>
3131
class ObjBase<Impl *, SyclObject> {
32-
public:
32+
protected:
3333
using ImplType = Impl;
3434
using ImplPtrType = Impl *;
3535
using Base = ObjBase<Impl *, SyclObject>;
3636

37-
protected:
3837
ImplPtrType impl;
3938

4039
explicit ObjBase(ImplPtrType pImpl) : impl(pImpl) {

0 commit comments

Comments
 (0)