Skip to content
Snippets Groups Projects
Commit a7ee6e96 authored by Jason Volk's avatar Jason Volk
Browse files

Fix multiple weak symbols from private object destructor (-Wstringop-overflow).

parent 723a06d4
No related branches found
No related tags found
No related merge requests found
Pipeline #3281 failed
......@@ -53,6 +53,8 @@ public:
private:
struct Entry
{
~Entry() = default;
std::string type;
mtx::events::state::power_level_t pl;
};
......@@ -102,6 +104,8 @@ public:
private:
struct Entry
{
~Entry() = default;
std::string mxid;
mtx::events::state::power_level_t pl;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment