Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
Rituals
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
William Bundy
Rituals
Commits
7684266b
Commit
7684266b
authored
Sep 30, 2016
by
William Bundy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rituals build 131
parent
37f56795
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1405 additions
and
4 deletions
+1405
-4
autogit.sh
autogit.sh
+1
-1
enc_temp_folder/3fa55cf348db7bcf4aedd8e39a371c/metaprogram_parser.cpp
...der/3fa55cf348db7bcf4aedd8e39a371c/metaprogram_parser.cpp
+1399
-0
rev.txt
rev.txt
+2
-2
src/metaprogram/metaprogram_parser.cpp
src/metaprogram/metaprogram_parser.cpp
+3
-1
No files found.
autogit.sh
View file @
7684266b
git add
--all
git commit
-m
"rituals build 13
0
"
git commit
-m
"rituals build 13
1
"
git push
git push github
enc_temp_folder/3fa55cf348db7bcf4aedd8e39a371c/metaprogram_parser.cpp
0 → 100644
View file @
7684266b
This diff is collapsed.
Click to expand it.
rev.txt
View file @
7684266b
1
29
14752792
88.655955
1
30
14752792
99.265098
src/metaprogram/metaprogram_parser.cpp
View file @
7684266b
...
...
@@ -1349,12 +1349,14 @@ void populate_meta_type(Struct_Member* member, Struct_Kind kind, Struct_Def* par
Meta_Type
*
get_types_in_struct
(
Struct_Def
*
def
,
Meta_Type
*
head
,
Memory_Arena
*
arena
)
{
Meta_Type
*
last
=
head
;
for
(
isize
i
=
0
;
i
<
def
->
member_count
;
++
i
)
{
populate_meta_type
(
def
->
members
+
i
,
def
->
member_kinds
[
i
],
def
,
head
);
head
->
next
=
arena_push_struct
(
arena
,
Meta_Type
);
last
=
head
;
head
=
head
->
next
;
}
return
head
;
return
last
;
}
enum
Meta_Flags
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment