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

add nonconst MatchData getter in Match

parent fa93d481
No related branches found
No related tags found
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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment