aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-18 00:43:13 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-18 00:43:13 -0400
commit7e0b1a321466e89e43b9b23463530141355ff87d (patch)
tree8e43ea1987666179fc13cbeebdefad317dc46112 /ast.c
parent8e3c871f27bdf0fbc6ca347efc6d38bb81287115 (diff)
Deprecate linker directives
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 0d2d6e5b..5ac5a325 100644
--- a/ast.c
+++ b/ast.c
@@ -157,7 +157,6 @@ CORD ast_to_xml(ast_t *ast)
T(NonOptional, "<NonOptional>%r</NonOptional>", ast_to_xml(data.value))
T(DocTest, "<DocTest>%r<output>%r</output></DocTest>", optional_tagged("expression", data.expr), xml_escape(data.output))
T(Use, "<Use>%r</Use>", xml_escape(data.path))
- T(LinkerDirective, "<LinkerDirective>%r</LinkerDirective>", xml_escape(data.directive))
T(InlineCCode, "<InlineCode>%r</InlineCode>", xml_escape(data.code))
default: return "???";
#undef T