We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ab18f3 commit 148e09eCopy full SHA for 148e09e
sensing/pointcloud_preprocessor/src/downsample_filter/robin_hood.h
@@ -123,6 +123,13 @@ static Counts & counts()
123
// mark unused members with this macro
124
#define ROBIN_HOOD_UNUSED(identifier)
125
126
+// bitness
127
+#if SIZE_MAX == UINT32_MAX
128
+#define ROBIN_HOOD_PRIVATE_DEFINITION_BITNESS() 32
129
+#else
130
+#define ROBIN_HOOD_PRIVATE_DEFINITION_BITNESS() 64
131
+#endif
132
+
133
// endianess
134
#ifdef _MSC_VER
135
#define ROBIN_HOOD_PRIVATE_DEFINITION_LITTLE_ENDIAN() 1
0 commit comments