commit 29c308bf1eafeb610ea08388676d91f1d02d2dba
parent 85c9efa37a8dd880f5eacbf3995bede80a81f797
Author: Sebastian <sebastian@sebsite.pw>
Date: Sat, 30 Sep 2023 23:36:49 -0400
hare::unparse: unexport prototype function
This is no longer required by haredoc, so there isn't a reason to export
it.
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/hare/unparse/type.ha b/hare/unparse/type.ha
@@ -60,8 +60,7 @@ case ast::builtin_type::VOID =>
yield "void";
};
-// Unparses a prototype.
-export fn prototype(
+fn prototype(
ctx: *context,
syn: *synfunc,
t: ast::func_type,