mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +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
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue