Skip to content

Commit df23544

Browse files
committed
fix in AbstractRefAccessor::getSpan
1 parent b005b4c commit df23544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataFormats/common/include/CommonDataFormat/AbstractRefAccessor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class AbstractRefAccessor
7373
template <typename U>
7474
auto getSpan(int src) const
7575
{
76-
return gsl::span<const U>(reinterpret_cast<const U*>(getPtr(src, 0), getSize(src)));
76+
return gsl::span<const U>(reinterpret_cast<const U*>(getPtr(src, 0)), getSize(src));
7777
}
7878

7979
size_t getSize(int src) const

0 commit comments

Comments
 (0)