Skip to content

Commit

Permalink
Fixed missing ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
alpertron committed Dec 21, 2024
1 parent 4b95c47 commit b5f7884
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions factor.c
Original file line number Diff line number Diff line change
Expand Up @@ -2233,8 +2233,10 @@ void factorExt(const BigInteger *toFactor, const int *number,
{
if (toFactor->nbrLimbs > 200)
{
#ifdef __EMSCRIPTEN__
databack(lang ? "3<p>Verificando si el número es una potencia perfecta más o menos 1.</p>" :
"3<p>Testing whether the number is a perfect power plus or minus one or not.</p>");
#endif
}
PowerPM1Check(pstFactors, toFactor);
}
Expand Down

0 comments on commit b5f7884

Please sign in to comment.