Skip to content

Commit

Permalink
Fix PieChart Previous Update
Browse files Browse the repository at this point in the history
fixes the previous update of Pie Chart that missed a type replacement that has been replaced here.
  • Loading branch information
Hapaxia committed Feb 20, 2025
1 parent a299a7a commit 06b5da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SelbaWard/PieChart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ PieChart::PieChart()
void PieChart::update()
{
const sf::Vector2f halfSize{ m_size / 2.f };
unsigned int totalNumberOfTrianglesRequired{ 0u };
std::size_t totalNumberOfTrianglesRequired{ 0u };
std::vector<std::size_t> numberOfTrianglesRequiredPerSlice;
for (auto& slice : slices)
{
Expand Down

0 comments on commit 06b5da2

Please sign in to comment.