diff --git a/docs/ASTs.md b/docs/ASTs.md index f44f258..81e19ba 100644 --- a/docs/ASTs.md +++ b/docs/ASTs.md @@ -567,12 +567,13 @@ Code Next; Code Parent; StringCached Name; CodeT Type; +b32 IsParamPack; ``` Serialization: ```cpp - + ``` ## Typedef diff --git a/test/validate.singleheader.cpp b/test/validate.singleheader.cpp index 6104cc4..331d942 100644 --- a/test/validate.singleheader.cpp +++ b/test/validate.singleheader.cpp @@ -31,7 +31,7 @@ void check_singleheader_ast() FileContents file_gen = file_read_contents( GlobalAllocator, true, "gen/singleheader_copy.gen.hpp" ); - log_fmt("Reconstructing from generated file:\n"); + log_fmt("\nReconstructing from generated file:\n"); time_start = time_rel_ms(); CodeBody ast_gen = parse_global_body( { file_gen.size, (char const*)file_gen.data } );