Since you do not want to use them, you can generate parameter names.
However, instead of completely deleting them, it is sometimes more useful to comment them as follows:
virtual void myFunc(int& , int& ) { }
Thus, you can still see what the purpose of this parameter is if you look at the commented out name. This is especially useful if you put the implementation in the header, as this will be the only place where parameter names are mentioned.
source share