We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44e80b commit 941bd2fCopy full SHA for 941bd2f
tree/dataframe/inc/ROOT/RDF/RColumnValue.hxx
@@ -187,7 +187,7 @@ public:
187
// We can decide since the array is long enough
188
fStorageType = EStorageType::kContiguous;
189
for (auto i = 0u; i < arrSize - 1; ++i) {
190
- if ((char *)&readerArray[i + 1] - (char *)&readerArray[i] != sizeof(T)) {
+ if ((char *)&readerArray[i + 1] - (char *)&readerArray[i] != sizeof(typename U::value_type)) {
191
fStorageType = EStorageType::kSparse;
192
break;
193
}
0 commit comments