Some bits of tidy up

This commit is contained in:
Phil Nash
2017-12-07 00:02:19 +00:00
parent 584e04d480
commit 3035120dc7
7 changed files with 24 additions and 23 deletions

View File

@@ -36,8 +36,8 @@ int thisDoesntThrow() {
class CustomException {
public:
CustomException( const std::string& msg )
: m_msg( msg )
explicit CustomException( const std::string& msg )
: m_msg( msg )
{}
std::string getMessage() const {
@@ -50,10 +50,10 @@ private:
class CustomStdException : public std::exception {
public:
CustomStdException( const std::string& msg )
: m_msg( msg )
explicit CustomStdException( const std::string& msg )
: m_msg( msg )
{}
~CustomStdException() noexcept {}
~CustomStdException() noexcept override {}
std::string getMessage() const {
return m_msg;