]> git.lizzy.rs Git - minetest.git/blobdiff - src/exceptions.h
Shaders for Android (GLES 2) (#10506)
[minetest.git] / src / exceptions.h
index a8a7db74c72f9f16614d26548280cc7f01253aee..c54307653b87b3575a09878ce59893d26ab4a544 100644 (file)
@@ -27,7 +27,8 @@ class BaseException : public std::exception
 {
 public:
        BaseException(const std::string &s) throw(): m_s(s) {}
-       ~BaseException() throw() {}
+       ~BaseException() throw() = default;
+
        virtual const char * what() const throw()
        {
                return m_s.c_str();