Skip to content
Snippets Groups Projects
Commit 39ac6446 authored by ilor's avatar ilor
Browse files

add nonconst MatchData getter in Match

parent fa93d481
Branches
No related merge requests found
......@@ -63,6 +63,10 @@ public:
return *match_;
}
MatchData& get_value() {
return *match_;
}
void set_value(const MatchData& m) {
match_ = m.clone();
}
......
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