mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(list): remove redundant void in function signatures
This commit is contained in:
parent
2142e02608
commit
3989b1da28
3 changed files with 13 additions and 13 deletions
|
|
@ -11,9 +11,9 @@ class TSLinkedNode {
|
|||
|
||||
// Member functions
|
||||
~TSLinkedNode();
|
||||
T* Next(void);
|
||||
T* Prev(void);
|
||||
void Unlink(void);
|
||||
T* Next();
|
||||
T* Prev();
|
||||
void Unlink();
|
||||
};
|
||||
|
||||
template <class T>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue