summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2024-05-04 00:38:51 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2024-05-04 13:55:11 +0200
commit48854e2321a59329cb3ac4dfdbf640b2aa43b294 (patch)
tree9563255bbcbcfded6fd284a4a822b5b043de58ec /examples
parent3ac52564f990c074462cd92e4787eb65c6005bb0 (diff)
downloadrebel-48854e2321a59329cb3ac4dfdbf640b2aa43b294.tar
rebel-48854e2321a59329cb3ac4dfdbf640b2aa43b294.zip
rebel-parse, rebel-lang: use struct keyword for struct types and literals
Diffstat (limited to 'examples')
-rw-r--r--examples/recipes/gmp/build.recipe4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/recipes/gmp/build.recipe b/examples/recipes/gmp/build.recipe
index 11de683..024d2b3 100644
--- a/examples/recipes/gmp/build.recipe
+++ b/examples/recipes/gmp/build.recipe
@@ -54,8 +54,8 @@ task compile(host: Platform) {
task install(host: Platform) {
parent = compile(host);
- output = {
- default = {
+ output = struct {
+ default = struct {
runtime_depends = [host_depend(toolchain::depends)],
},
};