Skip to content

Commit

Permalink
Switch spaces to tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail.lezhnin committed Jun 14, 2019
1 parent 74352b3 commit 302e650
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/quiz/cluster/kdtree.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ struct Node
: point(arr), id(setId), left(NULL), right(NULL)
{}

~Node()
{
delete left;
delete right;
}
~Node()
{
delete left;
delete right;
}
};

struct KdTree
Expand All @@ -31,10 +31,10 @@ struct KdTree
: root(NULL)
{}

~KdTree()
{
delete root;
}
~KdTree()
{
delete root;
}

void insert(std::vector<float> point, int id)
{
Expand Down

0 comments on commit 302e650

Please sign in to comment.