Skip to content

Commit 77f8c3c

Browse files
committed
remove outdated comment
1 parent efc0e7f commit 77f8c3c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

stringdtype/stringdtype/src/static_string.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ typedef union _npy_static_string_u {
5050
// short string sizes fit in a 4-bit integer
5151
#define NPY_SHORT_STRING_SIZE_MASK 0x0F // 0000 1111
5252
#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
53+
(sizeof(npy_static_string) - 1) // 15 or 7 depending on arch
5554
#define NPY_MEDIUM_STRING_MAX_SIZE 0xFF // 256
5655

5756
// Since this has no flags set, technically this is a heap-allocated string

0 commit comments

Comments
 (0)