| 25 | using namespace KDevelop; |
| 26 | |
| 27 | BenchCodeCompletion::BenchCodeCompletion() |
| 28 | : m_index(new ClangIndex) |
| 29 | , m_model(new ClangCodeCompletionModel(m_index.data(), this)) |
| 30 | { |
| 31 | m_model->initialize(); |
| 32 | } |
| 33 | |
| 34 | BenchCodeCompletion::~BenchCodeCompletion() = default; |
| 35 |
nothing calls this directly
no test coverage detected