mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
Whitespace handling now that token strings are built on the fly
This commit is contained in:
@@ -199,7 +199,9 @@ Token IfcSpfLexer::Next() {
|
||||
character == '/') {
|
||||
break;
|
||||
}
|
||||
str.push_back(character);
|
||||
if (!(character == ' ' || character == '\r' || character == '\n' || character == '\t')) {
|
||||
str.push_back(character);
|
||||
}
|
||||
stream->increment();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user