LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : #include "mfextensions/Extensions/suppress.hh" 2 : 3 1 : suppress::suppress(std::string const& name) 4 3 : : name_(name), expr_(regex_t(name)), in_use_(true) {} 5 : 6 6 : bool suppress::match(std::string const& name) 7 : { 8 6 : if (!in_use_) 9 : { 10 1 : return false; 11 : } 12 5 : return boost::regex_match(name, what_, expr_); 13 : } |
![]() |
Generated by: LCOV version 2.0-1 |