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

@ -13,12 +13,12 @@ class TSLink {
// Member functions
~TSLink();
bool IsLinked(void);
T* Next(void);
bool IsLinked();
T* Next();
TSLink<T>* NextLink(ptrdiff_t linkoffset);
T* Prev(void);
T* RawNext(void);
void Unlink(void);
T* Prev();
T* RawNext();
void Unlink();
};
template <class T>