mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-24 23:55:24 +08:00
include remove extra semicolons
This commit is contained in:
committed by
Nuno Marques
parent
a1418c56ad
commit
9f44279488
@@ -53,7 +53,7 @@ public:
|
||||
ListNode &operator=(ListNode &&) = delete;
|
||||
|
||||
void setSibling(T sibling) { _sibling = sibling; }
|
||||
const T getSibling() { return _sibling; }
|
||||
T getSibling() { return _sibling; }
|
||||
|
||||
protected:
|
||||
T _sibling;
|
||||
@@ -78,7 +78,7 @@ public:
|
||||
_head = newNode;
|
||||
}
|
||||
|
||||
const T getHead() { return _head; }
|
||||
T getHead() { return _head; }
|
||||
|
||||
protected:
|
||||
T _head;
|
||||
|
||||
Reference in New Issue
Block a user