chore(thread): clean up function signatures in headers

This commit is contained in:
fallenoak 2022-12-28 17:27:23 -06:00
parent 3989b1da28
commit 4dbfb0b3be
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 6 additions and 6 deletions

View file

@ -7,9 +7,9 @@
class SEvent : public SSyncObject {
public:
// Member functions
SEvent(int32_t manualReset, int32_t);
int32_t Reset(void);
int32_t Set(void);
SEvent(int32_t manualReset, int32_t initialValue);
int32_t Reset();
int32_t Set();
};
#endif