Skip to content

Commit

Permalink
replace SizeT by int, avoids warning about format at line 4844 in gdl…
Browse files Browse the repository at this point in the history
…Widget.cpp (#1826)
  • Loading branch information
GillesDuvert authored May 6, 2024
1 parent b1e78b6 commit 94ac220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gdlwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4831,7 +4831,7 @@ BaseGDL* GDLWidgetTable::GetDisjointSelectionValuesForStructs(DLongGDL* selectio
DStructDesc* inStructDesc = structIn->Desc();
//create tag structure
DStructDesc* outStructDesc = new DStructDesc("$truct");
for (SizeT outTag = 0, n = 0, l = 0; n < MAX(selection->Dim(1), 1); ++n) {
for (int outTag = 0, n = 0, l = 0; n < MAX(selection->Dim(1), 1); ++n) {
SizeT t = 0;
SizeT ix = 0;
if (majority == GDLWidgetTable::ROW_MAJOR) {
Expand Down

0 comments on commit 94ac220

Please sign in to comment.