diff options
| author | gingerBill <bill@gingerbill.org> | 2022-01-19 17:15:10 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-01-19 17:15:10 +0000 |
| commit | 2b918ada4bd640f9b0057f2ae4213fb73cae6ac5 (patch) | |
| tree | 72e94661ae302821b2f0867dddb7cfb81c248bae /src/docs_format.cpp | |
| parent | b5754b6ed9082bb729ea5d18a926c723e52f377f (diff) | |
Add `.Private` information to doc-format
Diffstat (limited to 'src/docs_format.cpp')
| -rw-r--r-- | src/docs_format.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/docs_format.cpp b/src/docs_format.cpp index 38e7e20c2..f47fd0945 100644 --- a/src/docs_format.cpp +++ b/src/docs_format.cpp @@ -172,6 +172,8 @@ enum OdinDocEntityFlag : u64 { OdinDocEntityFlag_Var_Thread_Local = 1ull<<40, OdinDocEntityFlag_Var_Static = 1ull<<41, + + OdinDocEntityFlag_Private = 1ull<<50, }; struct OdinDocEntity { |