We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab58683 commit 93a7909Copy full SHA for 93a7909
mapping_plugin/src/uda_data_source.cpp
@@ -188,7 +188,7 @@ class ArrayBuilder
188
m_data = db.data;
189
m_size = db.data_n;
190
m_shape.reserve(db.rank);
191
- for (int i = 0; i < db.rank; ++i) {
+ for (unsigned int i = db.rank - 1; i >= 0; --i) {
192
m_shape.push_back(db.dims[i].dim_n);
193
}
194
m_data_type = db.data_type;
0 commit comments