Skip to content

Commit

Permalink
rocket/cow_hashmap: Split a line
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Apr 27, 2024
1 parent bdbc106 commit 6f8b0c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rocket/details/cow_hashmap.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ struct basic_storage

#ifdef ROCKET_DEBUG
this->nelem = static_cast<size_type>(0xBAD1BEEF);
::std::memset(static_cast<void*>(this->bkts), '~', sizeof(bucket_type) + (this->nblk - 1) * sizeof(basic_storage));
::std::memset(static_cast<void*>(this->bkts), '~',
sizeof(bucket_type) + (this->nblk - 1) * sizeof(basic_storage));
#endif
}

Expand Down

0 comments on commit 6f8b0c0

Please sign in to comment.