doc update for parampack typename

This commit is contained in:
Edward R. Gonzalez 2023-08-23 13:17:30 -04:00
parent 30eec99628
commit 8635b0fd1b
2 changed files with 3 additions and 2 deletions

View File

@ -567,12 +567,13 @@ Code Next;
Code Parent;
StringCached Name;
CodeT Type;
b32 IsParamPack;
```
Serialization:
```cpp
<Attributes> <Name> <Specs>
<Attributes> <Name> <Specs> <IsParamPack ?: ...>
```
## Typedef

View File

@ -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 } );