Skip to content

Commit f270c45

Browse files
committed
Minor correction.
1 parent 9b346ff commit f270c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpp/src/sequence_group.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ size_t Sequence::_make_hash(size_t content_length) {
6060
else {
6161
OPENVINO_THROW("Hash calculation is not supported for this sequence type.");
6262
}
63-
const char* data = reinterpret_cast<char*>(content.data());
63+
const char* data = reinterpret_cast<const char*>(content.data());
6464
std::size_t size = content.size() * sizeof(content[0]);
6565
return std::hash<std::string_view>{}(std::string_view(data, size));
6666
}

0 commit comments

Comments
 (0)