Skip to content

Commit

Permalink
Fix missing symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Apr 10, 2024
1 parent 232c2b1 commit 085df57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/points.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace Wisteria::GraphItems
Point2D(GraphItems::GraphItemInfo itemInfo, const size_t radius,
const Wisteria::Icons::IconShape& shape = Wisteria::Icons::IconShape::Circle,
const wxBitmapBundle* img = nullptr)
: GraphItemBase(std::move(itemInfo), m_shape(shape), m_iconImage(img), m_radius(radius)
: GraphItemBase(std::move(itemInfo)), m_shape(shape), m_iconImage(img), m_radius(radius)
{
}

Expand Down

0 comments on commit 085df57

Please sign in to comment.