diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-08 16:25:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-08 16:25:43 +0200 |
commit | 10bd50c25d485732cf274bec1e80a8500d91e071 (patch) | |
tree | 4dba008d46cc40e6f6a8756bc4d37dd5b35d7571 /i18npool/inc | |
parent | 3c7a66a031331abdb6ed3134e2f1936a6eb5fbb0 (diff) |
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: Ifdfb96f77ee23a2aaa7200ecee01f957050a6700
Diffstat (limited to 'i18npool/inc')
-rw-r--r-- | i18npool/inc/transliteration_Ignore.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/inc/transliteration_Ignore.hxx b/i18npool/inc/transliteration_Ignore.hxx index 5cec8d475f80..f90b15dda5c9 100644 --- a/i18npool/inc/transliteration_Ignore.hxx +++ b/i18npool/inc/transliteration_Ignore.hxx @@ -100,7 +100,7 @@ TRANSLITERATION_IGNORE(Kashida_CTL) class ignore##name : public transliteration_Ignore {\ public:\ ignore##name () {\ - func = (TransFunc) 0;\ + func = nullptr;\ table = 0;\ map = 0;\ transliterationName = "ignore"#name;\ @@ -121,7 +121,7 @@ TRANSLITERATION_IGNORE(ProlongedSoundMark_ja_JP) class ignore##name : public transliteration_Ignore {\ public:\ ignore##name () {\ - func = (TransFunc) 0;\ + func = nullptr;\ table = 0;\ map = 0;\ transliterationName = "ignore"#name;\ |