Consider these two function definitions
void foo(){}
void foo(void){}
Is there any difference between these two? If not, why is the void argument there? Aesthetic reasons?
|
|
|
The main reason is to achieve consistent interpretation of headers that are shared between C and C++. In C: In C++: By writing |
|||||||||||||||||||||
|
|
I realize your question pertains to C++, but when it comes to C the answer can be found in K&R, pages 72-73:
|
||||
|
|
|
In C, you use a void in an empty function reference so that compiler has a prototype, and that prototype is "no arguments". In C++, you don't have to tell the compiler that you have a prototype because you can't leave out the prototype. |
|||
|