X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Flfloat%2Fmisc%2Fcl_LF_idecode.cc;h=8d547d345e50fa4ed4301621620ff033605dd42e;hb=665c18cd376d8d8c5a8eafb30681a3f9f46d4a99;hp=033e4bd95d30fb337e2d4e9ebbf1f0c914356d77;hpb=353bb28da69bf2c10e74d11a8a2b1e4ea315cb0e;p=cln.git diff --git a/src/float/lfloat/misc/cl_LF_idecode.cc b/src/float/lfloat/misc/cl_LF_idecode.cc index 033e4bd..8d547d3 100644 --- a/src/float/lfloat/misc/cl_LF_idecode.cc +++ b/src/float/lfloat/misc/cl_LF_idecode.cc @@ -25,7 +25,7 @@ const cl_idecoded_float integer_decode_float (const cl_LF& x) var cl_signean sign = TheLfloat(x)->sign; var uintC len = TheLfloat(x)->len; // intDsize*len >= 53 >= 33 >= cl_value_len, also len >= bn_minlength. - // Baue Integer für die Mantisse. + // Baue Integer für die Mantisse. // Vorne 1 Nulldigit, damit es eine NDS wird. var Bignum mant = allocate_bignum(1+len); mspref(arrayMSDptr(TheBignum(mant)->data,1+len),0) = 0;