aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-02-07 20:25:48 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-02-07 20:25:48 -0500
commit6310f0565641dd64ae435c6a352c76e54fb9ddba (patch)
tree1c65dee9dc8e4c7088d0fbe3114bb8da5007acbe /ast.c
parent362146e2955eb48de85d9df04cec549dfe72624a (diff)
Remove dead code
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index 23f1409d..b960a2e1 100644
--- a/ast.c
+++ b/ast.c
@@ -164,7 +164,6 @@ CORD ast_to_xml(ast_t *ast)
T(DocTest, "<DocTest>%r<output>%r</output></DocTest>", optional_tagged("expression", data.expr), xml_escape(data.output))
T(Use, "<Use>%r%r</Use>", optional_tagged("var", data.var), xml_escape(data.path))
T(InlineCCode, "<InlineCode>%r</InlineCode>", xml_escape(data.code))
- T(Serialize, "<Serialize>%r</Serialize>", ast_to_xml(data.value))
T(Deserialize, "<Deserialize><type>%r</type>%r</Deserialize>", type_ast_to_xml(data.type), ast_to_xml(data.value))
default: return "???";
#undef T