| 37 | |
| 38 | namespace KDevelop { |
| 39 | Utils::BasicSetRepository* RecursiveImportRepository::repository() |
| 40 | { |
| 41 | static QRecursiveMutex mutex; |
| 42 | static Utils::BasicSetRepository recursiveImportRepositoryObject(QStringLiteral("Recursive Imports"), &mutex, |
| 43 | &KDevelop::globalItemRepositoryRegistry()); |
| 44 | return &recursiveImportRepositoryObject; |
| 45 | } |
| 46 | |
| 47 | ReferencedTopDUContext::ReferencedTopDUContext(TopDUContext* context) : m_topContext(context) |
| 48 | { |
no outgoing calls
no test coverage detected