We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 381fb6a commit 269e82eCopy full SHA for 269e82e
1 file changed
include/xsimd/config/xsimd_getauxval.hpp
@@ -34,13 +34,14 @@ namespace xsimd
34
class linux_auxval : private utils::uint_bitset<A, linux_getauxval_t>
35
{
36
using bitset_t = utils::uint_bitset<A, linux_getauxval_t>;
37
+ using bitset_t::bitset_t;
38
39
public:
40
using aux = A;
41
42
inline static linux_auxval read()
43
- return bitset_t(linux_getauxval(type));
44
+ return linux_auxval(linux_getauxval(type));
45
}
46
47
/** Create a value which returns false to everything. */
0 commit comments