While reviewing one of our C++ class through coverity, it showed an error message on a particular class. The class is as follows:
class InputRecord
{
/* Construtor */
...
InputRecord::RejectRecord();
...
/* Destructor */
}
What is the significance of using an identifier inside the class? Is it a good practice to follow this?
Thanks, Mathew Liju