aboutsummaryrefslogtreecommitdiff
path: root/gf28.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gf28.cpp')
-rw-r--r--gf28.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gf28.cpp b/gf28.cpp
index e65c20a..61f47b1 100644
--- a/gf28.cpp
+++ b/gf28.cpp
@@ -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;