| 396 | } |
| 397 | |
| 398 | bool PathMatcher::addPaths( const PathMatcher &paths ) |
| 399 | { |
| 400 | bool result = false; |
| 401 | NodePtr newRoot = addPathsWalk( m_root.get(), paths.m_root.get(), /* shared = */ false, result ); |
| 402 | if( newRoot ) |
| 403 | { |
| 404 | m_root = newRoot; |
| 405 | } |
| 406 | return result; |
| 407 | } |
| 408 | |
| 409 | bool PathMatcher::addPaths( const PathMatcher &paths, const std::vector<IECore::InternedString> &prefix ) |
| 410 | { |