authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-08-20 22:51:19+02:00
committergravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-08-20 23:02:10+02:00
logadf3d00e874275557b69ef65164a2b2a0dd88167
tree0b8e0c7f1af46e6fb317966e7204b4d9b0448b11
parent446597bd3c935be632287a8ad6cfd72892d674e6

Remove explicit comptime


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/crypto/blake2.zig+1-1
......@@ -72,7 +72,7 @@ pub fn Blake2s(comptime out_len: usize) type {
7272 buf_len: u8,
7373
7474 pub fn init() Self {
75 return comptime init_keyed("");
75 return init_keyed("");
7676 }
7777
7878 pub fn init_keyed(key: []const u8) Self {