forked from organicmaps/organicmaps
Using noexcept instead of throw in RootException.
This commit is contained in:
parent
7d0eb88c07
commit
8a7e2ee86a
1 changed files with 1 additions and 3 deletions
|
@ -11,9 +11,7 @@ class RootException : public std::exception
|
|||
public:
|
||||
RootException(char const * what, std::string const & msg);
|
||||
|
||||
virtual ~RootException() throw()
|
||||
{
|
||||
}
|
||||
virtual ~RootException() noexcept = default;
|
||||
|
||||
std::string const & Msg() const { return m_msg; }
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue