Skip to content

Commit

Permalink
Clang Format
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson committed Apr 30, 2024
1 parent 0c10d18 commit 16b2a9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ int32 skipVolume(std::istream& in, bool binary, usize numElements)
std::vector<char> buffer(BUFFER_SIZE + 1, 0);
while(foundItems < numElements)
{
std::fill(buffer.begin(), buffer.end(), '\0'); // Splat Zeros across everything
std::fill(buffer.begin(), buffer.end(), '\0'); // Splat Zeros across everything
err = CsvParser::ReadLine(in, buffer.data(), BUFFER_SIZE); // Read BUFFER_SIZE worth of data.
foundItems += count_tokens(buffer.data(), ' ', false, BUFFER_SIZE + 1);
}
Expand Down

0 comments on commit 16b2a9e

Please sign in to comment.