Remove unnecessary initialization

This commit is contained in:
Aaron Gokaslan 2022-02-20 15:01:57 -05:00
parent 225dbae67e
commit f8d3ed22bf

View File

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