| 46 | } |
| 47 | |
| 48 | std::string pathToString( const std::vector<std::string>& path ) |
| 49 | { |
| 50 | std::string pathString; |
| 51 | for ( const auto & s : path ) |
| 52 | { |
| 53 | if ( !pathString.empty() ) |
| 54 | pathString += '/'; |
| 55 | pathString += s; |
| 56 | } |
| 57 | return pathString; |
| 58 | } |
| 59 | |
| 60 | // Read the disabled-reason string off an internal entry. Empty means the entry accepts input. |
| 61 | // Groups are never disabled. |
no test coverage detected