My const functions

All getter-fuctions should be const.
So I think that these 2 also need to be const-functions

bool IsGameWon(); // Asking for win condition
bool CheckGuessValidity(std::string); // Ask if the guess was valid

Both functions doesn’t change any values.

Is my argumentation correct this way?

Thanks

Privacy & Terms