chore(list): remove redundant void in function signatures

This commit is contained in:
fallenoak 2022-12-28 17:11:34 -06:00
parent 2142e02608
commit 3989b1da28
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 13 additions and 13 deletions

View file

@ -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>