| 222 | void Settings::addCompiler(Compiler *compiler) { compilerList.append(compiler); } |
| 223 | |
| 224 | void Settings::deleteCompiler(int index) { |
| 225 | if (0 <= index && index < compilerList.size()) { |
| 226 | delete compilerList[index]; |
| 227 | compilerList.removeAt(index); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | auto Settings::getCompiler(int index) -> Compiler * { |
| 232 | if (0 <= index && index < compilerList.size()) { |
nothing calls this directly
no outgoing calls
no test coverage detected