Skip to content

Commit

Permalink
Fix deleted destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
nmellado committed Dec 14, 2023
1 parent a675f13 commit c4e5653
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Ponca/src/SpatialPartitioning/KdTree/kdTreeTraits.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ class KdTreeCustomizableNode
{
// We need an explicit constructor here, see https://stackoverflow.com/a/70428826
constexpr Data() : m_leaf() {}
constexpr Data(Data&&d) = default;
~Data() {}
LeafType m_leaf;
InnerType m_inner;
};
Expand Down

0 comments on commit c4e5653

Please sign in to comment.