Skip to content

Commit 9f46e66

Browse files
Fznamznonvladimirlaz
authored andcommitted
[SYCL][NFC] Remove return from void function
Signed-off-by: Mariya Podchishchaeva <[email protected]>
1 parent 9e1f628 commit 9f46e66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/include/CL/sycl/buffer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class buffer {
196196
impl->set_final_data(finalData);
197197
}
198198

199-
void set_write_back(bool flag = true) { return impl->set_write_back(flag); }
199+
void set_write_back(bool flag = true) { impl->set_write_back(flag); }
200200

201201
bool is_sub_buffer() const { return IsSubBuffer; }
202202

0 commit comments

Comments
 (0)