Skip to content

Commit

Permalink
Update IfcTokenChunk.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
beachtom committed Sep 8, 2023
1 parent 805658a commit e78be41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wasm/parsing/IfcTokenChunk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace webifc::parsing
if (_fileStream->GetRef()!=_fileStartRef) _fileStream->Go(_fileStartRef);
std::vector<char> temp;
temp.reserve(50);
_currentSize=0;
_currentSize = 0;
while ( !_fileStream->IsAtEnd() && _currentSize < _chunkSize)
{
const char c = _fileStream->Get();
Expand Down

0 comments on commit e78be41

Please sign in to comment.