diff options
Diffstat (limited to 'src/core/model/DataObject.h')
-rw-r--r-- | src/core/model/DataObject.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/model/DataObject.h b/src/core/model/DataObject.h index 6b41a051..28678ca3 100644 --- a/src/core/model/DataObject.h +++ b/src/core/model/DataObject.h @@ -70,10 +70,6 @@ class GPGFRONTEND_CORE_EXPORT DataObject { for (size_t i = 0; i < type_list.size(); ++i) { if (std::type_index(*type_list[i]) != std::type_index((*this)[i].type())) { - GF_CORE_LOG_ERROR( - "value of index {} in data object is type: {}, " - "not expected type: {}", - i, ((*this)[i]).type().name(), type_list[i]->name()); return false; } } |