From 980cdf0fb56c7bdefaab94799cc16750b7b62b0b Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Fri, 22 Apr 2016 00:45:18 -0500 Subject: [PATCH] Exclude allocator.h from amalgamated header Nobody using SecureAllocator really needs the amalgamated header. resolves #461 --- amalgamate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amalgamate.py b/amalgamate.py index 2102f30..9cb2d08 100644 --- a/amalgamate.py +++ b/amalgamate.py @@ -67,7 +67,7 @@ def amalgamate_source(source_top_dir=None, header.add_text("/// to prevent private header inclusion.") header.add_text("#define JSON_IS_AMALGAMATION") header.add_file("include/json/version.h") - header.add_file("include/json/allocator.h") + #header.add_file("include/json/allocator.h") # Not available here. header.add_file("include/json/config.h") header.add_file("include/json/forwards.h") header.add_file("include/json/features.h")