| 15794 | } |
| 15795 | |
| 15796 | bool shouldShowDuration( IConfig const& config, double duration ) { |
| 15797 | if ( config.showDurations() == ShowDurations::Always ) { |
| 15798 | return true; |
| 15799 | } |
| 15800 | if ( config.showDurations() == ShowDurations::Never ) { |
| 15801 | return false; |
| 15802 | } |
| 15803 | const double min = config.minDuration(); |
| 15804 | return min >= 0 && duration >= min; |
| 15805 | } |
| 15806 | |
| 15807 | std::string serializeFilters( std::vector<std::string> const& container ) { |
| 15808 | ReusableStringStream oss; |
no test coverage detected