]> www.ginac.de Git - cln.git/blobdiff - src/integer/bitwise/cl_I_lognot.cc
* */*: Convert encoding from ISO 8859-1 to UTF-8.
[cln.git] / src / integer / bitwise / cl_I_lognot.cc
index 4122128f6bf6057f7593eb1076668e7d3eb001c5..77251339dd53c02107e88d111093e93334f1d6a3 100644 (file)
@@ -17,7 +17,7 @@ namespace cln {
 
 const cl_I lognot (const cl_I& x)
     { if (fixnump(x)) // Fixnum -> ganz einfach:
-        { // bitweise als Fixnum zurück
+        { // bitweise als Fixnum zurück
           return cl_I_from_word(x.word ^ cl_combine(0,~(cl_uint)0));
         }
         else