]> www.ginac.de Git - cln.git/blobdiff - src/integer/elem/cl_I_plus1.cc
Distinguish between cl_word_size and the ABI's pointer size.
[cln.git] / src / integer / elem / cl_I_plus1.cc
index 58c90d7267367e77bcf8b50e7e9f6c1713017a42..bc73cfccc1c2df4318368804ae03e4a292d4bb63 100644 (file)
@@ -18,7 +18,7 @@ const cl_I plus1 (const cl_I& x)
          { // x ist Fixnum
            if (x.word != cl_combine(cl_FN_tag,bit(cl_value_len-1)-1))
                // bleibt Fixnum: direkt 1 addieren
-               // This assumes cl_value_shift + cl_value_len == cl_word_size.
+               // This assumes cl_value_shift + cl_value_len == cl_pointer_size.
                { return cl_I_from_word(x.word + cl_combine(0,1)); }
           }
         // die sichere Methode