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

Fix unused parameter warning

parent 45e6279c
...@@ -353,9 +353,9 @@ class match_expr { ...@@ -353,9 +353,9 @@ class match_expr {
// nop // nop
} }
match_expr(match_expr&& other) = default; match_expr(match_expr&&) = default;
match_expr(const match_expr& other) = default; match_expr(const match_expr&) = default;
result_type operator()(const message& tup) { result_type operator()(const message& tup) {
return apply(tup); return apply(tup);
......
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