Remove mutable (fixes oversight in the previous commit).

This commit is contained in:
Ralf W. Grosse-Kunstleve 2022-05-12 00:29:04 -07:00
parent 4193375ed6
commit b020e04275

View File

@ -498,7 +498,7 @@ public:
const object &trace() const { return m_trace; }
private:
mutable object m_type, m_value, m_trace;
object m_type, m_value, m_trace;
mutable std::string m_lazy_what;
};
#if defined(_MSC_VER)