1 #include "mfextensions/Extensions/suppress.hh"
3 suppress::suppress(std::string
const& name) : name_(name), expr_(regex_t(name)), what_(), in_use_(true) {}
6 if (!in_use_)
return false;
7 return boost::regex_match(name, what_, expr_);
suppress(std::string const &name)
Construct a suppression using the given name for regex matching
bool match(std::string const &name)
Check if the name matches this suppression