aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorFrank Denis <124872+jedisct1@users.noreply.github.com>2020-08-14 16:23:55 +0200
committerAndrew Kelley <andrew@ziglang.org>2020-08-16 22:35:27 -0700
commit739b68938cb233d88e47ab73047787aba0ccb918 (patch)
tree5273026e96bed19063152239d1179fb12c2651d8 /lib/std
parent6af9bc8c686c5eeaff274fa7ebb96b1ead3212ce (diff)
downloadzig-739b68938cb233d88e47ab73047787aba0ccb918.tar.gz
zig-739b68938cb233d88e47ab73047787aba0ccb918.zip
Update lib/std/crypto/25519/field25519.zig
Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/crypto/25519/field25519.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/crypto/25519/field25519.zig b/lib/std/crypto/25519/field25519.zig
index 9061cbf011..fe5c28056a 100644
--- a/lib/std/crypto/25519/field25519.zig
+++ b/lib/std/crypto/25519/field25519.zig
@@ -3,7 +3,7 @@ const readIntLittle = std.mem.readIntLittle;
const writeIntLittle = std.mem.writeIntLittle;
pub const Fe = struct {
- limbs: [5]u64 = undefined,
+ limbs: [5]u64,
const MASK51: u64 = 0x7ffffffffffff;