aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Catalogue.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Catalogue.cxx')
-rw-r--r--src/Catalogue.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Catalogue.cxx b/src/Catalogue.cxx
index 979aaa1d7..55c15cca6 100644
--- a/src/Catalogue.cxx
+++ b/src/Catalogue.cxx
@@ -33,7 +33,7 @@ const LexerModule *Catalogue::Find(int language) {
return lm;
}
}
- return 0;
+ return nullptr;
}
const LexerModule *Catalogue::Find(const char *languageName) {
@@ -45,7 +45,7 @@ const LexerModule *Catalogue::Find(const char *languageName) {
}
}
}
- return 0;
+ return nullptr;
}
void Catalogue::AddLexerModule(LexerModule *plm) {