// 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
}