diff options
Diffstat (limited to 'starts/meaning-vm/level-2/baseref.hpp')
-rw-r--r-- | starts/meaning-vm/level-2/baseref.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starts/meaning-vm/level-2/baseref.hpp b/starts/meaning-vm/level-2/baseref.hpp index 921d1d3..c66d1a7 100644 --- a/starts/meaning-vm/level-2/baseref.hpp +++ b/starts/meaning-vm/level-2/baseref.hpp @@ -17,7 +17,7 @@ struct baseref : public level1::baseref<ref> using level1::template baseref<ref>::baseref; // thread-local context - static ref context() { return level2::context(); } + static ref & context() { return level2::context(); } template <typename... Refs> ref operator()(Refs... args) { return level2::dohabit(self, {args.ptr()...}); } |