summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/memorystore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'starts/meaning-vm/memorystore.cpp')
-rw-r--r--starts/meaning-vm/memorystore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/starts/meaning-vm/memorystore.cpp b/starts/meaning-vm/memorystore.cpp
index 19e40db..9be7ba5 100644
--- a/starts/meaning-vm/memorystore.cpp
+++ b/starts/meaning-vm/memorystore.cpp
@@ -36,7 +36,7 @@ concept* referenced(ref r) {
void dealloc(ref r) {
concept * referenced = ::referenced(r);
if (referenced) {
- throw std::logic_error("concept '" + r.name() + "' is referenced by '" + ref(referenced).name() + '"');
+ throw std::logic_error("concept '" + r.name()->data + "' is referenced by '" + ref(referenced).name()->data + '"');
}
for (
auto it = concepts().begin();