Skip to content

Commit

Permalink
removed unnecessary fill value code from h5coro
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Dec 8, 2023
1 parent d6090d1 commit c6e4df8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/h5/H5Coro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -651,13 +651,15 @@ void H5FileBuffer::readDataset (info_t* info)
buffer = new uint8_t [buffer_size];

/* Fill Buffer with Fill Value (if provided) */
#if 0
if(metaData.fillsize > 0)
{
for(int64_t i = 0; i < buffer_size; i += metaData.fillsize)
{
memcpy(&buffer[i], &metaData.fill.fill_ll, metaData.fillsize);
}
}
#endif
}

/* Populate Rest of Info Struct */
Expand Down

0 comments on commit c6e4df8

Please sign in to comment.