diff options
Diffstat (limited to 'starts/meaning-vm/level-0/ref.hpp')
-rw-r--r-- | starts/meaning-vm/level-0/ref.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/starts/meaning-vm/level-0/ref.hpp b/starts/meaning-vm/level-0/ref.hpp index 951676b..c1fa7fa 100644 --- a/starts/meaning-vm/level-0/ref.hpp +++ b/starts/meaning-vm/level-0/ref.hpp @@ -1,13 +1,14 @@ #pragma once #include "common.hpp" +#include "ref-mixin.hpp" #include <string> namespace intellect { namespace level0 { -struct ref +struct ref : public refmixin<ref, vref> { ref(concept *p); operator concept*() const { return ptr; } |