diff options
Diffstat (limited to 'starts/meaning-vm/main.cpp')
-rw-r--r-- | starts/meaning-vm/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starts/meaning-vm/main.cpp b/starts/meaning-vm/main.cpp index b8d0e02..f8e4ec0 100644 --- a/starts/meaning-vm/main.cpp +++ b/starts/meaning-vm/main.cpp @@ -10,10 +10,10 @@ void dumpconcept(ref r) declrefs(dumped, name); for (auto & l : r->links) { - if (l.first == name) { + if (ref(l.first) == name) { continue; } - cout << r << " " << l.first << " " << l.second << endl; + cout << r << " " << ref(l.first) << " " << ref(l.second) << endl; } if (!r->linked(dumped)) { r[dumped = true]; |