| 596 | } |
| 597 | |
| 598 | void IfcParse::impl::in_memory_file_storage::try_read_semicolon() const { |
| 599 | auto old_offset = tokens->stream->tell(); |
| 600 | Token semilocon = tokens->Next(); |
| 601 | if (!TokenFunc::isOperator(semilocon, ';')) { |
| 602 | tokens->stream->seek(old_offset); |
| 603 | } |
| 604 | } |
| 605 | |
| 606 | void IfcParse::impl::in_memory_file_storage::register_inverse(unsigned id_from, const IfcParse::entity* from_entity, int inst_id, int attribute_index) { |
| 607 | // Assume a check on token type has already been performed |