We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efc0e7f commit 77f8c3cCopy full SHA for 77f8c3c
stringdtype/stringdtype/src/static_string.c
@@ -50,8 +50,7 @@ typedef union _npy_static_string_u {
50
// short string sizes fit in a 4-bit integer
51
#define NPY_SHORT_STRING_SIZE_MASK 0x0F // 0000 1111
52
#define NPY_SHORT_STRING_MAX_SIZE \
53
- (sizeof(npy_static_string) - 1) // 15 or 7 depending on arch
54
-// one bit is used to signal a medium string
+ (sizeof(npy_static_string) - 1) // 15 or 7 depending on arch
55
#define NPY_MEDIUM_STRING_MAX_SIZE 0xFF // 256
56
57
// Since this has no flags set, technically this is a heap-allocated string
0 commit comments