| 61 | } |
| 62 | |
| 63 | Cache* CacheManager::createCache() const |
| 64 | { |
| 65 | if(disabled) |
| 66 | return new EmptyCache(); |
| 67 | #ifdef USE_CGAL |
| 68 | return new CGALCache(); |
| 69 | #else |
| 70 | return new Cache(); |
| 71 | #endif |
| 72 | } |
nothing calls this directly
no outgoing calls
no test coverage detected