Skip to content

Commit 4074620

Browse files
committed
Remove redundant namespace qualifier.
1 parent fc6c037 commit 4074620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/bitcoin/system/impl/hash/functions.ipp

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ INLINE constexpr size_t unique_hash(const data_array<Size>& key) NOEXCEPT
217217
// This optimization breaks data portability (by endianness).
218218
// Could be modified to use an endian conversion vs. simple copy.
219219
size_t value{};
220-
std::copy_n(key.begin(), size, system::byte_cast(value).begin());
220+
std::copy_n(key.begin(), size, byte_cast(value).begin());
221221
return value;
222222
}
223223

0 commit comments

Comments
 (0)