We have quite a number of functions taking 'void' argument list in our C++ code.
From the CodingStyle: "Functions that take no arguments should be declared and defined with 'void' argument list in C code, and empty argument list in C++ code."
While this is not as bad as having it the other way (empty argument list in C-code, while it should be 'void'), it should still be corrected.
We have quite a number of functions taking 'void' argument list in our C++ code.
From the CodingStyle: "Functions that take no arguments should be declared and defined with 'void' argument list in C code, and empty argument list in C++ code."
While this is not as bad as having it the other way (empty argument list in C-code, while it should be 'void'), it should still be corrected.