Skip to content

Commit 0a6bccf

Browse files
authored
Merge pull request #551 from vizzuhq/crash_fix
Crash fix
2 parents 2c0a726 + 5fa86ab commit 0a6bccf

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## Fixed
6+
7+
- Crash fix on special (meas-meas) area bar mekko charts.
8+
59
## [0.11.3] - 2024-06-27
610

711
### Fixed

src/dataframe/old/datatable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ double DataCube::aggregateAt(const MultiIndex &multiIndex,
402402
std::string res;
403403
for (auto iit = index.begin();
404404
auto &&dim : sub_df.get_dimensions()) {
405-
if (iit->first != dim) ++iit;
405+
while (iit->first != dim) ++iit;
406406

407407
auto &&cats = df->get_categories(dim);
408408
res += dim;

0 commit comments

Comments
 (0)