Skip to content

Commit fe6fd2d

Browse files
committed
clist repr now dereferences elements
1 parent b480069 commit fe6fd2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/pl_search/clist.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class CList : public Term {
7474
if (it != elements.begin()) {
7575
oss << ", ";
7676
}
77-
oss << (*it)->repr();
77+
oss << (*it)->dereference()->repr();
7878
}
7979
oss << "]";
8080
return oss.str();

0 commit comments

Comments
 (0)