commit a2cf919f187f8ef6c89157b6f20bf91ffd8f0255
Author: Jean-Marc Lasgouttes <[email protected]>
Date: Wed May 3 14:51:03 2017 +0200
Fix compiler warning (gcc 7)
---
src/insets/InsetIPAMacro.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/insets/InsetIPAMacro.cpp b/src/insets/InsetIPAMacro.cpp
index 7852486..06296ed 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;