summaryrefslogtreecommitdiffstats
path: root/src/Forge.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Forge.cpp')
-rw-r--r--src/Forge.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Forge.cpp b/src/Forge.cpp
index fff4295a..52a01f40 100644
--- a/src/Forge.cpp
+++ b/src/Forge.cpp
@@ -53,6 +53,10 @@ Forge::str(const Atom& atom, bool quoted)
ss << (quoted ? "<" : "")
<< _map.unmap_uri(atom.get<int32_t>())
<< (quoted ? ">" : "");
+ } else if (atom.type() == Path) {
+ ss << (quoted ? "<" : "")
+ << atom.ptr<const char>()
+ << (quoted ? ">" : "");
} else if (atom.type() == String) {
ss << (quoted ? "\"" : "")
<< atom.ptr<const char>()