Commit 60e58f5d authored by Marian Triebe's avatar Marian Triebe

Fix compile on GCC 4.8

relates #633.
parent cbebf885
......@@ -139,7 +139,9 @@ public:
detail::pseudo_tuple
>::type;
trivial_match_case(trivial_match_case&&) = default;
trivial_match_case(const trivial_match_case&) = default;
trivial_match_case& operator=(trivial_match_case&&) = default;
trivial_match_case& operator=(const trivial_match_case&) = default;
trivial_match_case(F f)
......
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