aboutsummaryrefslogtreecommitdiff
path: root/src/docs_format.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-01-19 14:57:27 +0000
committergingerBill <bill@gingerbill.org>2022-01-19 14:57:27 +0000
commit28a816ef25476086800a294202aad7c1a1bfc0f0 (patch)
treee847c3ba38e26c5195d8b2ebac5dd10877199de7 /src/docs_format.cpp
parent6bdb210ad8f827c93f0a903c8cdbea73555409ec (diff)
Allow for entity grouping in structs and procedure signatures with the Odin doc-format
Diffstat (limited to 'src/docs_format.cpp')
-rw-r--r--src/docs_format.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/docs_format.cpp b/src/docs_format.cpp
index 5cfac4817..38e7e20c2 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 2
+#define OdinDocVersionType_Patch 3
struct OdinDocHeaderBase {
u8 magic[8];
@@ -185,6 +185,7 @@ struct OdinDocEntity {
u32 reserved_for_init;
OdinDocString comment;
OdinDocString docs;
+ i32 field_group_index;
OdinDocEntityIndex foreign_library;
OdinDocString link_name;
OdinDocArray<OdinDocAttribute> attributes;