We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5e1df9 commit f16f2d6Copy full SHA for f16f2d6
2 files changed
docs/mkdocs.yml
@@ -46,7 +46,7 @@ plugins:
46
- mkdocstrings:
47
handlers:
48
python:
49
- paths: [cachebox]
+ paths: [..]
50
options:
51
docstring_style: google
52
docstring_section_style: list
src/hashbrown/control/group/generic.rs
@@ -1,11 +1,13 @@
1
-use super::super::{BitMask, Tag};
2
-use core::{mem, ptr};
+use super::super::BitMask;
+use super::super::Tag;
3
+use core::mem;
4
+use core::ptr;
5
6
// Use the native word size as the group size. Using a 64-bit group size on
7
// a 32-bit architecture will just end up being more expensive because
8
// shifts and multiplies will need to be emulated.
9
-cfg_if! {
10
+cfg_if::cfg_if! {
11
if #[cfg(any(
12
target_pointer_width = "64",
13
target_arch = "aarch64",
0 commit comments