Skip to content

Commit

Permalink
Fix the code contains unhandled character (#1466)
Browse files Browse the repository at this point in the history
It looks like there are some non-ASCII characters present in the code. Specifically, the character "–" in the line:

Signed-off-by: zengwei2000 <102871671+zengwei2000@users.noreply.github.com>
  • Loading branch information
zengwei00 authored Jun 27, 2023
1 parent 56ca398 commit 0853c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/readDeepTiledFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ readDeepTiledFile (
dataA[i][j] = new half[sampleCount[i][j]];
}

file.readTiles (0, numXTiles - 1, 0, numYTiles 1);
file.readTiles (0, numXTiles - 1, 0, numYTiles - 1);

// (after read data is processed, data must be freed:)

Expand Down

0 comments on commit 0853c73

Please sign in to comment.