From: Jean-Marc Lasgouttes Date: Wed, 3 May 2017 12:51:03 +0000 (+0200) Subject: Fix compiler warning (gcc 7) X-Git-Tag: 2.3.0beta1~484 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a2cf919f187f8ef6c89157b6f20bf91ffd8f0255;p=features.git Fix compiler warning (gcc 7) --- diff --git a/src/insets/InsetIPAMacro.cpp b/src/insets/InsetIPAMacro.cpp index 7852486b7d..06296ed3a1 100644 --- a/src/insets/InsetIPAMacro.cpp +++ b/src/insets/InsetIPAMacro.cpp @@ -543,13 +543,13 @@ int InsetIPAChar::plaintext(odocstringstream & os, OutputParams const &, size_t) int InsetIPAChar::docbook(odocstream & /*os*/, OutputParams const &) const { switch (kind_) { - // FIXME - LYXERR0("IPA tone macros not yet implemented with DocBook!"); case TONE_FALLING: case TONE_RISING: case TONE_HIGH_RISING: case TONE_LOW_RISING: case TONE_HIGH_RISING_FALLING: + // FIXME + LYXERR0("IPA tone macros not yet implemented with DocBook!"); break; } return 0;