Apply override to Pair classes

This commit is contained in:
Richard Berger
2022-01-21 16:13:49 -05:00
parent ff3f762499
commit 06beb28d7d
512 changed files with 3316 additions and 3345 deletions

View File

@ -62,8 +62,6 @@ class TokenizerException : public std::exception {
* \param token String of the token/word that caused the error */
explicit TokenizerException(const std::string &msg, const std::string &token);
~TokenizerException() noexcept override {}
/** Retrieve message describing the thrown exception
* \return string with error message */
const char *what() const noexcept override { return message.c_str(); }