Skip to content

Commit d831d84

Browse files
authored
Update Node.h
1 parent 3315519 commit d831d84

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Node.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
struct Node
44
{
5-
public:
65
Node(unsigned _x = 0, unsigned _y = 0)
76
: x(_x), y(_y) {}
87

@@ -32,4 +31,4 @@ struct Node
3231
return false;
3332
return x != n->x || y != n->y;
3433
}
35-
};
34+
};

0 commit comments

Comments
 (0)