From: Eric Branlund Date: Mon, 20 Jun 2022 16:31:10 +0000 (-0600) Subject: Preprocess out definitions for plural_aux() and is_a_vowel() when JP is set. Resolve... X-Git-Tag: 3.0.0Alpha63^2~4^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0a6a8135d0fbbfa9c573746537f8e557911ab395;p=hengbandforosx%2Fhengbandosx.git Preprocess out definitions for plural_aux() and is_a_vowel() when JP is set. Resolves https://github.com/hengband/hengband/issues/2548 . --- diff --git a/src/locale/english.cpp b/src/locale/english.cpp index e57c787df..2bf064fb2 100644 --- a/src/locale/english.cpp +++ b/src/locale/english.cpp @@ -2,6 +2,8 @@ #include "system/angband.h" #include "util/string-processor.h" +#ifndef JP + /*! * @brief 英単語、句、説を複数形を変換する / Pluralize a monster name * @param Name 変換したい文字列の参照ポインタ @@ -100,3 +102,5 @@ bool is_a_vowel(int ch) return false; } + +#endif // !JP