Skip to content

Commit 4a3e3d4

Browse files
committed
cl_uint -> uint32_t
Signed-off-by: Dmitry Sidorov <[email protected]>
1 parent 950084e commit 4a3e3d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/include/CL/sycl/properties/buffer_properties.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ class mem_channel : public detail::PropertyWithData<
4444
detail::PropWithDataKind::BufferMemChannel> {
4545
public:
4646
mem_channel(cl_uint Channel) : m_Channel(Channel) {}
47-
cl_uint get_channel() const { return m_Channel; }
47+
uint32_t get_channel() const { return m_Channel; }
4848

4949
private:
50-
cl_uint m_Channel;
50+
uint32_t m_Channel;
5151
};
5252

5353
} // namespace buffer

0 commit comments

Comments
 (0)