diff options
Diffstat (limited to 'gf28.cpp')
-rw-r--r-- | gf28.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ GF28& GF28::operator-=(GF28 o){ return *this; } -GF28& GF28::operator<<=(int n){ //multiplication by x^n +GF28& GF28::operator<<=(int n){ assert(n>=0); value<<=n; if(value&0x100)value^=modulus; |