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