From: Leandro Lucarella Date: Wed, 19 Oct 2005 05:51:05 +0000 (+0000) Subject: Bugfix en esMenorEnModuloQue que hacia que se viole el segmento. X-Git-Tag: darcs_import X-Git-Url: https://git.llucax.com/z.facultad/75.29/dale.git/commitdiff_plain/refs/heads/master Bugfix en esMenorEnModuloQue que hacia que se viole el segmento. --- diff --git a/src/number.h b/src/number.h index bc1e5c2..98d0f45 100644 --- a/src/number.h +++ b/src/number.h @@ -404,7 +404,7 @@ bool number< N, E >::menorEnModuloQue(const number< N, E >& n) const // Recorro los bytes más significativos (que tiene sólo n) for (i = chunk.size(); i < n.chunk.size(); ++i) { - if (chunk[i] != 0) // Si n tiene algo distinto a 0 + if (n.chunk[i] != 0) // Si n tiene algo distinto a 0 { return true; // Entonces soy más chico }