From 955ffe6eadbd2ee7c5afd56dd9110d868fbce1da Mon Sep 17 00:00:00 2001 From: John Bartholomew Date: Sun, 3 Mar 2024 00:10:25 +0000 Subject: [PATCH] delete declaration for jsonnet_unparse_jsonnet (which doesn't exist) Reported in https://github.com/google/jsonnet/issues/1012 --- core/parser.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/parser.h b/core/parser.h index 6e41c36fa..3ef53b892 100644 --- a/core/parser.h +++ b/core/parser.h @@ -38,11 +38,6 @@ AST *jsonnet_parse(Allocator *alloc, Tokens &tokens); */ std::string jsonnet_unparse_number(double v); -/** The inverse of jsonnet_parse. - */ -std::string jsonnet_unparse_jsonnet(const AST *ast, const Fodder &final_fodder, unsigned indent, - bool pad_arrays, bool pad_objects, char comment_style); - } // namespace jsonnet::internal #endif // JSONNET_PARSER_H