diff options
| author | DYSEQTA <7029061+DYSEQTA@users.noreply.github.com> | 2021-11-24 12:07:14 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 12:07:14 +1100 |
| commit | 0a87ffe0e601d1092034a39ac6365e1a81e3bba1 (patch) | |
| tree | 24e743182d1f379c78154041cbe916d3154f73a0 /src/docs_format.cpp | |
| parent | e5f961b48f52f8346f00d43fea4700c8513c53c3 (diff) | |
| parent | 5db505c42f83d5be628a3e56d6cd471a9e790428 (diff) | |
Merge branch 'odin-lang:master' into master
Diffstat (limited to 'src/docs_format.cpp')
| -rw-r--r-- | src/docs_format.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/docs_format.cpp b/src/docs_format.cpp index 4cdb19a68..1c3af6257 100644 --- a/src/docs_format.cpp +++ b/src/docs_format.cpp @@ -15,7 +15,7 @@ struct OdinDocVersionType { #define OdinDocVersionType_Major 0 #define OdinDocVersionType_Minor 2 -#define OdinDocVersionType_Patch 0 +#define OdinDocVersionType_Patch 1 struct OdinDocHeaderBase { u8 magic[8]; @@ -175,7 +175,8 @@ enum OdinDocEntityFlag : u64 { struct OdinDocEntity { OdinDocEntityKind kind; - u32 flags; + u32 reserved; + u64 flags; OdinDocPosition pos; OdinDocString name; OdinDocTypeIndex type; |