mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-28 07:49:59 +00:00
Storage rework WIP
This commit is contained in:
@@ -57,7 +57,7 @@ class IFC_PARSE_API IfcAttributeOutOfRangeException : public IfcException {
|
||||
class IFC_PARSE_API IfcInvalidTokenException : public IfcException {
|
||||
public:
|
||||
IfcInvalidTokenException(
|
||||
int token_start,
|
||||
size_t token_start,
|
||||
const std::string& token_string,
|
||||
const std::string& expected_type)
|
||||
: IfcException(
|
||||
@@ -65,7 +65,7 @@ class IFC_PARSE_API IfcInvalidTokenException : public IfcException {
|
||||
boost::lexical_cast<std::string>(token_start) +
|
||||
" invalid " + expected_type) {}
|
||||
IfcInvalidTokenException(
|
||||
int token_start,
|
||||
size_t token_start,
|
||||
char character)
|
||||
: IfcException(
|
||||
std::string("Unexpected '") + std::string(1, character) + "' at offset " +
|
||||
|
||||
Reference in New Issue
Block a user