X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_utils.C;h=89f758519d829b2eb6613ac41862e54eeebaf913;hb=8dccec5c46a1689fe3ea37144252e952771e1e1c;hp=8609e7a9a5f237abccd3517390679256ab4c62b5;hpb=c35b288b74ac9b1450a81c1520292ab95735bb0f;p=lyx.git diff --git a/src/mathed/math_utils.C b/src/mathed/math_utils.C index 8609e7a9a5..89f758519d 100644 --- a/src/mathed/math_utils.C +++ b/src/mathed/math_utils.C @@ -11,7 +11,8 @@ #include -#include +#include + #include "math_defs.h" #include "symbol_def.h" @@ -70,12 +71,12 @@ int MathedLookupBOP(short id) issorted = true; } - int result=0, m, k, l= 0, r = bopCount; + int result= 0, m, k, l= 0, r = bopCount; while (l < r) { m = (l+r)/2; k = binary_op_table[m].id - id; - if (k==0) { + if (k == 0) { result = binary_op_table[m].isrel; break; } else