We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc7e16 commit c19382cCopy full SHA for c19382c
src/blst_t.hpp
@@ -111,7 +111,7 @@ class blst_384_t {
111
}
112
#else
113
template<typename... Ts>
114
- constexpr blst_384_t(limb_t a0, Ts... arr) : vec{a0, arr...} {}
+ constexpr blst_384_t(limb_t a0, Ts... arr) : val{a0, arr...} {}
115
#endif
116
117
inline void to_scalar(pow_t& scalar) const
@@ -385,7 +385,7 @@ class blst_256_t {
385
386
387
388
- constexpr blst_256_t(limb_t a0, Ts... arr) : vec{a0, arr...} {}
+ constexpr blst_256_t(limb_t a0, Ts... arr) : val{a0, arr...} {}
389
390
391
0 commit comments