From 3c9bdf645958a1c5b71cc9b96a5b711cca14224f Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 13 Nov 2014 10:11:46 -0800 Subject: Moved cmark_free_inlines from inlines to ast. --- src/ast.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index f8e0345..5c3d298 100644 --- a/src/ast.h +++ b/src/ast.h @@ -102,6 +102,7 @@ struct cmark_node_block { typedef struct cmark_node_block cmark_node_block; void cmark_free_blocks(cmark_node_block *e); +void cmark_free_inlines(cmark_node_inl *e); #ifndef CMARK_NO_SHORT_NAMES #define node_inl cmark_node_inl @@ -129,6 +130,8 @@ void cmark_free_blocks(cmark_node_block *e); #define BLOCK_SETEXT_HEADER CMARK_BLOCK_SETEXT_HEADER #define BLOCK_HRULE CMARK_BLOCK_HRULE #define BLOCK_REFERENCE_DEF CMARK_BLOCK_REFERENCE_DEF + #define free_inlines cmark_free_inlines + #define free_blocks cmark_free_blocks #endif #endif -- cgit v1.2.3