summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-2/funcs.cpp
diff options
context:
space:
mode:
authoruser <user@localhost.localdomain>2019-12-09 07:51:46 -0800
committeruser <user@localhost.localdomain>2019-12-09 07:51:46 -0800
commit0e40f5829a880ba63a3a8603e4babf2c2f7659e5 (patch)
treea956a7393d66e1bd9e1547737b89b3bd701113ec /starts/meaning-vm/level-2/funcs.cpp
parent12793ac154b8c9b2e9bb8869cb72bbc1a438dc3d (diff)
downloadstandingwithresilience-0e40f5829a880ba63a3a8603e4babf2c2f7659e5.tar.gz
standingwithresilience-0e40f5829a880ba63a3a8603e4babf2c2f7659e5.zip
compilation fixes for clang
Diffstat (limited to 'starts/meaning-vm/level-2/funcs.cpp')
-rw-r--r--starts/meaning-vm/level-2/funcs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/starts/meaning-vm/level-2/funcs.cpp b/starts/meaning-vm/level-2/funcs.cpp
index 3c34c41..ed50c39 100644
--- a/starts/meaning-vm/level-2/funcs.cpp
+++ b/starts/meaning-vm/level-2/funcs.cpp
@@ -11,7 +11,7 @@ namespace level2 {
using namespace concepts;
-ref context()
+ref & context()
{
static thread_local auto ctx = a(concepts::context);
return ctx;
@@ -19,7 +19,7 @@ ref context()
ref makehabit(ref name, std::initializer_list<ref> argnames, std::function<void(ref)> code)
{
- ref habit = level1::a(habit, name);
+ ref habit = level1::a(concepts::habit, name);
ref posarg = habit;
for (auto argname : argnames) {
ref nextarg = a(positional-argument);