diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-11-24 00:51:53 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-11-24 00:51:53 -0800 |
commit | b3dea01d1ad6803b96865a846b56494506ccc74e (patch) | |
tree | b6d21894711aff4d0fa1197434a03cacfaf0d594 /starts/meaning-vm/memorystore.cpp | |
parent | fed2ac694bd028d119581ea05a3376e791aee97d (diff) | |
download | standingwithresilience-b3dea01d1ad6803b96865a846b56494506ccc74e.tar.gz standingwithresilience-b3dea01d1ad6803b96865a846b56494506ccc74e.zip |
changes didn't pan out; next change is big (merging statementevaluable with ref). saving work.
Diffstat (limited to 'starts/meaning-vm/memorystore.cpp')
-rw-r--r-- | starts/meaning-vm/memorystore.cpp | 2 |
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(); |