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 420c20a commit d1032f2Copy full SHA for d1032f2
src/node.c
@@ -9,9 +9,9 @@ static void S_node_unlink(cmark_node *node);
9
10
#define NODE_MEM(node) cmark_node_mem(node)
11
12
-cmark_node__internal_flags CMARK_NODE__OPEN = 0;
13
-cmark_node__internal_flags CMARK_NODE__LAST_LINE_BLANK = 0;
14
-cmark_node__internal_flags CMARK_NODE__LAST_LINE_CHECKED = 0;
+cmark_node__internal_flags CMARK_NODE__OPEN;
+cmark_node__internal_flags CMARK_NODE__LAST_LINE_BLANK;
+cmark_node__internal_flags CMARK_NODE__LAST_LINE_CHECKED;
15
16
void cmark_register_node_flag(cmark_node__internal_flags *flags) {
17
static uint8_t shift = 0;
0 commit comments