diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-11-26 03:15:09 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-11-26 03:15:09 -0800 |
commit | 0a9e019f082578895e4ebc88e4b89188da17947f (patch) | |
tree | 2a2017bec3d0450deb086fa6ad92d44b9e025e3b /starts/meaning-vm/level0.cpp | |
parent | d5e8c913a0c3b63ef7eadea41ec1818548f5f4cf (diff) | |
download | standingwithresilience-0a9e019f082578895e4ebc88e4b89188da17947f.tar.gz standingwithresilience-0a9e019f082578895e4ebc88e4b89188da17947f.zip |
removed braces from multilink call, normalized memorystore ref usage per proposal
Diffstat (limited to 'starts/meaning-vm/level0.cpp')
-rw-r--r-- | starts/meaning-vm/level0.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starts/meaning-vm/level0.cpp b/starts/meaning-vm/level0.cpp index fa33d71..6ff0102 100644 --- a/starts/meaning-vm/level0.cpp +++ b/starts/meaning-vm/level0.cpp @@ -17,10 +17,10 @@ int main() ref skip = alloc(); - a.link({ + a.link( b, c, d, e - }); + ); e.set(b, a); c.link(b, e); a.vset<int>(numlink, 3); |