Fix compile errors for CPD only languages

This commit is contained in:
Andreas Dangel
2020-07-17 14:57:43 +02:00
parent 7ae424a35b
commit e4690cb56a
13 changed files with 37 additions and 13 deletions

View File

@ -24,7 +24,7 @@ public class CppLanguageModule extends BaseLanguageModule {
* extensions for C++.
*/
public CppLanguageModule() {
super(NAME, null, TERSE_NAME, null, "h", "c", "cpp", "cxx", "cc", "C");
super(NAME, null, TERSE_NAME, "h", "c", "cpp", "cxx", "cc", "C");
addVersion("", new CppHandler(), true);
}
}