| 5462 | } |
| 5463 | |
| 5464 | void Config::Impl::resetCacheIDs() |
| 5465 | { |
| 5466 | m_cacheids.clear(); |
| 5467 | m_cacheidnocontext = ""; |
| 5468 | m_validation = VALIDATION_UNKNOWN; |
| 5469 | m_validationtext = ""; |
| 5470 | |
| 5471 | // As any changes could impact the cache keys, it's better to always flush the cache |
| 5472 | // of processors to not keep in memory useless instances. |
| 5473 | m_processorCache.clear(); |
| 5474 | } |
| 5475 | |
| 5476 | void Config::Impl::getAllInternalTransforms(ConstTransformVec & transformVec) const |
| 5477 | { |
no test coverage detected