Skip to content

Commit

Permalink
Fix conversion warning on Xcode 15 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmolcard authored Jun 11, 2024
1 parent 7e166dc commit 836b0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sst/jucegui/data/TreeTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ConcreteTabularizedViewOfTree::ConcreteTabularizedViewOfTree(const TreeTableData
rows.push_back(tr);
}

uint32_t ConcreteTabularizedViewOfTree::getRowCount() const { return rows.size(); }
uint32_t ConcreteTabularizedViewOfTree::getRowCount() const { return (uint32_t)rows.size(); }

void ConcreteTabularizedViewOfTree::open(int r)
{
Expand Down

0 comments on commit 836b0b3

Please sign in to comment.