diff options
author | EuAndreh <eu@euandre.org> | 2024-09-27 15:07:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-09-27 15:07:54 -0300 |
commit | 3a989e4e016856d48ac8c174562ad8b33d2a3af8 (patch) | |
tree | 31832710003f335a88d5ab767aab4e970d6fa7f0 /src/gobang.go | |
parent | Makefile: make "vesion" public and a `const` (diff) | |
download | gobang-3a989e4e016856d48ac8c174562ad8b33d2a3af8.tar.gz gobang-3a989e4e016856d48ac8c174562ad8b33d2a3af8.tar.xz |
src/gobang.go: Remove `maxInt` and `MinimumPasswordLength` constants
They were used by scrypt(), and were moved there.
Diffstat (limited to 'src/gobang.go')
-rw-r--r-- | src/gobang.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gobang.go b/src/gobang.go index dabdc69..fab8392 100644 --- a/src/gobang.go +++ b/src/gobang.go @@ -44,10 +44,6 @@ type CopyResult struct { -const maxInt = int((^uint(0)) >> 1) -const MinimumPasswordLength = 16 - - // Local variables var ( |