X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Futils.h;h=042f14cb93c8185e6f2c4a1ab1989d74b18eae26;hp=dd39d42ec2f5e412d1a54f8acbb11aca5caf9709;hb=cd0f12f5ce6023812f76d0f6eb40ee83078c2775;hpb=163bdedf89a1796d181bbed44cd18600760e3504 diff --git a/ginac/utils.h b/ginac/utils.h index dd39d42e..042f14cb 100644 --- a/ginac/utils.h +++ b/ginac/utils.h @@ -49,7 +49,7 @@ class dunno {}; unsigned log2(unsigned n); /** Rotate bits of unsigned value by one bit to the left. - * This can be necesary if the user wants to define its own hashes. */ + * This can be necessary if the user wants to define its own hashes. */ inline unsigned rotate_left(unsigned n) { return (n & 0x80000000U) ? (n << 1 | 0x00000001U) : (n << 1);