Skip to content

Commit

Permalink
mathml: fix compiler warning [-Wunused-variable]
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre authored and poire-z committed Jul 29, 2024
1 parent 4f7b6fb commit f1203fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crengine/src/mathml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1944,8 +1944,8 @@ static void fixupMathML( ldomNode * node, bool is_in_script ) {
const mathml_operator_dict_entry * infix = NULL;
const mathml_operator_dict_entry * prefix = NULL;
const mathml_operator_dict_entry * postfix = NULL;
bool found = getOperatorProperties((const lChar32 *)text.c_str(), infix, prefix, postfix);
// printf("%s %d %d %d %d\n", UnicodeToLocal(text).c_str(), found, infix, prefix, postfix);
/*bool found =*/ getOperatorProperties((const lChar32 *)text.c_str(), infix, prefix, postfix);
// printf("%s %d %d %d %d\n", UnicodeToLocal(text).c_str(), found, infix, prefix, postfix);

// The "form" (prefix/infix/postfix) to be used depends on various things:
// https://mathml-refresh.github.io/mathml-core/#dictionary-based-attributes
Expand Down

0 comments on commit f1203fd

Please sign in to comment.