@@ -639,7 +639,7 @@ template <typename CG, typename Hash, typename KeyEqual>
639639__device__ bool static_map<Key, Value, Scope, Allocator>::device_mutable_view::erase(
640640 CG g, key_type const & k, Hash hash, KeyEqual key_equal) noexcept
641641{
642- auto current_slot = this ->initial_slot (g, k, hash);
642+ auto current_slot = this ->initial_slot (g, k, hash);
643643 auto const init_slot = current_slot;
644644 value_type const insert_pair =
645645 make_pair<Key, Value>(this ->get_erased_key_sentinel (), this ->get_empty_value_sentinel ());
@@ -701,7 +701,7 @@ static_map<Key, Value, Scope, Allocator>::device_view::find(Key const& k,
701701 Hash hash,
702702 KeyEqual key_equal) noexcept
703703{
704- auto current_slot = this ->initial_slot (k, hash);
704+ auto current_slot = this ->initial_slot (k, hash);
705705 auto const init_slot = current_slot;
706706
707707 while (true ) {
@@ -726,7 +726,7 @@ static_map<Key, Value, Scope, Allocator>::device_view::find(Key const& k,
726726 Hash hash,
727727 KeyEqual key_equal) const noexcept
728728{
729- auto current_slot = this ->initial_slot (k, hash);
729+ auto current_slot = this ->initial_slot (k, hash);
730730 auto const init_slot = current_slot;
731731
732732 while (true ) {
@@ -752,7 +752,7 @@ static_map<Key, Value, Scope, Allocator>::device_view::find(CG g,
752752 Hash hash,
753753 KeyEqual key_equal) noexcept
754754{
755- auto current_slot = this ->initial_slot (g, k, hash);
755+ auto current_slot = this ->initial_slot (g, k, hash);
756756 auto const init_slot = current_slot;
757757
758758 while (true ) {
@@ -792,7 +792,7 @@ static_map<Key, Value, Scope, Allocator>::device_view::find(CG g,
792792 Hash hash,
793793 KeyEqual key_equal) const noexcept
794794{
795- auto current_slot = this ->initial_slot (g, k, hash);
795+ auto current_slot = this ->initial_slot (g, k, hash);
796796 auto const init_slot = current_slot;
797797
798798 while (true ) {
@@ -831,7 +831,7 @@ template <typename ProbeKey, typename Hash, typename KeyEqual>
831831__device__ bool static_map<Key, Value, Scope, Allocator>::device_view::contains(
832832 ProbeKey const & k, Hash hash, KeyEqual key_equal) const noexcept
833833{
834- auto current_slot = this ->initial_slot (k, hash);
834+ auto current_slot = this ->initial_slot (k, hash);
835835 auto const init_slot = current_slot;
836836
837837 while (true ) {
@@ -854,7 +854,7 @@ static_map<Key, Value, Scope, Allocator>::device_view::contains(CG g,
854854 Hash hash,
855855 KeyEqual key_equal) const noexcept
856856{
857- auto current_slot = this ->initial_slot (g, k, hash);
857+ auto current_slot = this ->initial_slot (g, k, hash);
858858 auto const init_slot = current_slot;
859859
860860 while (true ) {
0 commit comments