Skip to content

Commit

Permalink
GCC fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Dec 9, 2023
1 parent 3652da4 commit b00e9ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/german_stem.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ namespace stemming
{
bool stepBSucessfull{ false };
// 'em', but not if 'system'
if ((is_suffix(text,
if ((stem<string_typeT>::is_suffix(text,
common_lang_constants::LOWER_E, common_lang_constants::UPPER_E,
common_lang_constants::LOWER_M, common_lang_constants::UPPER_M)) &&
!(is_suffix(text,
!(stem<string_typeT>::is_suffix(text,
common_lang_constants::LOWER_S, common_lang_constants::UPPER_S,
common_lang_constants::LOWER_Y, common_lang_constants::UPPER_Y,
common_lang_constants::LOWER_S, common_lang_constants::UPPER_S,
Expand Down

0 comments on commit b00e9ce

Please sign in to comment.