Skip to content

Commit 885bbbe

Browse files
committed
Just to see, also remove static inline from source.c
1 parent fdce63a commit 885bbbe

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

suitesparse_graphblas/create_headers.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -816,9 +816,10 @@ def create_source_text(groups, *, char_defines=None):
816816
]
817817
for item in sorted(char_defines, key=sort_key):
818818
text.append(f"char *{item}_STR = {item};")
819-
text.append("")
820-
for node in groups["static inline"]:
821-
text.append(node["text"])
819+
# Don't define static inline twice
820+
# text.append("")
821+
# for node in groups["static inline"]:
822+
# text.append(node["text"])
822823
return text
823824

824825

0 commit comments

Comments
 (0)