Fix some warnings

This commit is contained in:
Thomas Krijnen
2018-12-12 16:26:49 +01:00
parent 0c8e9e7040
commit f526277a7d
3 changed files with 6 additions and 3 deletions
+3 -1
View File
@@ -36,7 +36,9 @@ static const char * const DATA = "DATA";
using namespace IfcParse;
HeaderEntity::HeaderEntity(const char * const datatype, size_t size, IfcFile* file)
: IfcEntityInstanceData(file, size), size_(size), _datatype(datatype)
: IfcEntityInstanceData(file, size)
, _datatype(datatype)
, size_(size)
{
if (file) {
offset_in_file_ = file->stream->Tell();