Skip to content

Commit

Permalink
Fix missing headers
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Dec 18, 2024
1 parent e17d896 commit 84a18bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/boost/crypt2/hash/detail/sha_1_2_hasher_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <array>
#include <ranges>
#include <algorithm>
#include <type_traits>
#include <cstdint>
#include <cstddef>

Expand All @@ -26,6 +27,7 @@
#include <cuda/std/cstddef>
#include <cuda/std/concepts>
#include <cuda/std/ranges>
#include <cuda/std/type_traits>

#endif

Expand All @@ -50,7 +52,7 @@ using std::forward;

#else

using size_t = unsigned long;
using cuda::std::size_t
using cuda::std::uint32_t;
using cuda::std::array;
using cuda::std::byte;
Expand Down

0 comments on commit 84a18bf

Please sign in to comment.