removing redundant statement in ov::descriptor::Tensor::Tensor (#18098)

Co-authored-by: Ilya Churaev <ilya.churaev@intel.com>
This commit is contained in:
Wang Kai 2023-07-25 13:55:42 +08:00 committed by GitHub
parent e7cd113a47
commit fdfafbb7d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,6 @@ ov::descriptor::Tensor::Tensor(const element::Type& element_type,
: m_element_type(element_type),
m_partial_shape(pshape),
m_shape_changed(true) {
m_name_it = m_names.cend();
set_names(names);
}