Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
beachtom committed Oct 12, 2023
1 parent 3e84d10 commit 637723b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/usage/src/exporting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export default async function() {
};
}

Equals("In eq out", diffBytes, 403045);
Equals("In eq out", diffBytes, 403018);
});
}
2 changes: 1 addition & 1 deletion src/wasm/parsing/IfcTokenChunk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ namespace webifc::parsing
while ((c >= '0' && c <= '9') || (c == '.') || c == 'e' || c == 'E' || c == '-'|| c == '+')
{
temp.push_back(c);
if (c=='.') isFrac = true;
if (c=='.' || c == 'E') isFrac = true;
_fileStream->Forward();
c = _fileStream->Get();
}
Expand Down

0 comments on commit 637723b

Please sign in to comment.