Skip to content

Commit

Permalink
Fix wrong const T detection in sck.
Browse files Browse the repository at this point in the history
  • Loading branch information
kouchy committed Nov 15, 2023
1 parent 0cf0f6a commit 47dfc4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Runtime/Socket/Socket.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void** Socket
assert(start_col < n_cols);

this->rowsptr -= this->start_row;
uint8_t* dptr = this->template get_dataptr<uint8_t>() + start_col;
uint8_t* dptr = (uint8_t*)get_dataptr() + start_col;
for (size_t r = 0; r < this->get_n_rows(); r++)
{
this->rowsptr[r] = (void*)dptr;
Expand Down

0 comments on commit 47dfc4f

Please sign in to comment.