mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 18:21:59 +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 == '/') {
|
character == '/') {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (!(character == ' ' || character == '\r' || character == '\n' || character == '\t')) {
|
||||||
str.push_back(character);
|
str.push_back(character);
|
||||||
|
}
|
||||||
stream->increment();
|
stream->increment();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user