fix: remove useless void in function parameter list
- according to c++ standard, single void in function parameter is equal to empty parameter list. for removing this syntax which may cause misunderstanding (becuase in C, they are different I guess), I replace all `(void)` to `()`.
This commit is contained in:
@ -11,7 +11,7 @@ namespace LibCmo::CK2::ObjImpls {
|
||||
virtual ~CK3dEntity();
|
||||
YYCC_DEL_CLS_COPY_MOVE(CK3dEntity);
|
||||
|
||||
virtual CK_CLASSID GetClassID(void) override {
|
||||
virtual CK_CLASSID GetClassID() override {
|
||||
return CK_CLASSID::CKCID_3DENTITY;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user