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, 2 insertions, 0 deletions
diff --git a/starts/meaning-vm/level-2/baseref.hpp b/starts/meaning-vm/level-2/baseref.hpp index c2bc0d1..921d1d3 100644 --- a/starts/meaning-vm/level-2/baseref.hpp +++ b/starts/meaning-vm/level-2/baseref.hpp @@ -19,6 +19,8 @@ struct baseref : public level1::baseref<ref> // thread-local context static ref context() { return level2::context(); } + template <typename... Refs> + ref operator()(Refs... args) { return level2::dohabit(self, {args.ptr()...}); } }; } |