| 45 | } |
| 46 | |
| 47 | Exec_UncompilationTable::Entry |
| 48 | Exec_UncompilationTable::Find(const SdfPath &path) |
| 49 | { |
| 50 | TRACE_FUNCTION(); |
| 51 | |
| 52 | const _ConcurrentMap::iterator foundIter = _ruleSets.find(path); |
| 53 | if (foundIter != _ruleSets.end()) { |
| 54 | return {path, foundIter->second}; |
| 55 | } |
| 56 | return {path, nullptr}; |
| 57 | } |
| 58 | |
| 59 | std::vector<Exec_UncompilationTable::Entry> |
| 60 | Exec_UncompilationTable::UpdateForRecursiveResync(const SdfPath &path) |