We use lazy-copy-on-write so that copies are cheap until edited. This means we can use default copy and assignment
| 71 | /// We use lazy-copy-on-write so that copies are cheap until edited. |
| 72 | /// This means we can use default copy and assignment |
| 73 | PathMatcher( const PathMatcher &other ) = default; |
| 74 | PathMatcher& operator= ( const PathMatcher &other ) = default; |
| 75 | ~PathMatcher() = default; |
| 76 |
no outgoing calls
no test coverage detected