diff --git a/src/common/ex.hh b/src/common/ex.hh index b02cc9f8..4bcbdc6e 100644 --- a/src/common/ex.hh +++ b/src/common/ex.hh @@ -19,9 +19,7 @@ { \ return ( exDescription ); \ } \ - virtual ~exName() noexcept \ - { \ - } \ + virtual ~exName() noexcept {} \ }; /// Same as DEF_EX, but takes a runtime string argument, which gets concatenated @@ -47,9 +45,7 @@ { \ return value.c_str(); \ } \ - virtual ~exName() noexcept \ - { \ - } \ + virtual ~exName() noexcept {} \ }; #endif diff --git a/src/dict/belarusiantranslit.hh b/src/dict/belarusiantranslit.hh index 7be668e3..4ea452db 100644 --- a/src/dict/belarusiantranslit.hh +++ b/src/dict/belarusiantranslit.hh @@ -11,7 +11,6 @@ namespace BelarusianTranslit { std::vector< sptr< Dictionary::Class > > makeDictionaries(); - } #endif diff --git a/src/dict/chinese.hh b/src/dict/chinese.hh index 85c35924..cc3054de 100644 --- a/src/dict/chinese.hh +++ b/src/dict/chinese.hh @@ -12,7 +12,6 @@ namespace Chinese { std::vector< sptr< Dictionary::Class > > makeDictionaries( Config::Chinese const & ); - } #endif diff --git a/src/dict/german.hh b/src/dict/german.hh index 9fd89380..46b80416 100644 --- a/src/dict/german.hh +++ b/src/dict/german.hh @@ -10,7 +10,6 @@ namespace GermanTranslit { sptr< Dictionary::Class > makeDictionary(); - } #endif // GERMAN_HH diff --git a/src/dict/greektranslit.hh b/src/dict/greektranslit.hh index 3cc2900e..b6fe3f39 100644 --- a/src/dict/greektranslit.hh +++ b/src/dict/greektranslit.hh @@ -10,7 +10,6 @@ namespace GreekTranslit { sptr< Dictionary::Class > makeDictionary(); - } #endif // GREEKTRANSLIT_HH diff --git a/src/dict/russiantranslit.hh b/src/dict/russiantranslit.hh index 24d552c7..b3cd93c3 100644 --- a/src/dict/russiantranslit.hh +++ b/src/dict/russiantranslit.hh @@ -10,7 +10,6 @@ namespace RussianTranslit { sptr< Dictionary::Class > makeDictionary(); - } #endif