Commit 2ac0ae32 authored by Dominik Charousset's avatar Dominik Charousset

Fix sum type unit test

parent b8102167
...@@ -85,11 +85,11 @@ public: ...@@ -85,11 +85,11 @@ public:
} }
private: private:
inline union_type& data() { inline union_type& get_data() {
return *this; return *this;
} }
inline const union_type& data() const { inline const union_type& get_data() const {
return *this; return *this;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment