Skip to content

Commit e7f25b7

Browse files
committed
Fix usage of std:: instead of compat::
1 parent b26768a commit e7f25b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/crypt2/drbg/detail/hash_drbg.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class hash_drbg
6161
static constexpr compat::uint64_t reseed_interval {281474976710656ULL}; // 2^48
6262

6363
compat::array<compat::byte, seedlen_bytes> constant_ {};
64-
compat::span<const std::byte, seedlen_bytes> constant_span_ {constant_};
64+
compat::span<const compat::byte, seedlen_bytes> constant_span_ {constant_};
6565
compat::array<compat::byte, seedlen_bytes> value_ {};
6666
compat::span<const compat::byte, seedlen_bytes> value_span_ {value_};
6767

0 commit comments

Comments
 (0)