Skip to content

Commit c19382c

Browse files
committed
blst_t.hpp: fix typo.
1 parent cbc7e16 commit c19382c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/blst_t.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class blst_384_t {
111111
}
112112
#else
113113
template<typename... Ts>
114-
constexpr blst_384_t(limb_t a0, Ts... arr) : vec{a0, arr...} {}
114+
constexpr blst_384_t(limb_t a0, Ts... arr) : val{a0, arr...} {}
115115
#endif
116116

117117
inline void to_scalar(pow_t& scalar) const
@@ -385,7 +385,7 @@ class blst_256_t {
385385
}
386386
#else
387387
template<typename... Ts>
388-
constexpr blst_256_t(limb_t a0, Ts... arr) : vec{a0, arr...} {}
388+
constexpr blst_256_t(limb_t a0, Ts... arr) : val{a0, arr...} {}
389389
#endif
390390

391391
inline void to_scalar(pow_t& scalar) const

0 commit comments

Comments
 (0)