summaryrefslogtreecommitdiff
path: root/cpp/src/slice2confluence/Gen.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-04-13 12:32:44 -0700
committerMark Spruiell <mes@zeroc.com>2017-04-13 12:32:44 -0700
commite0381d075f800ca89085d3ead77569c7b7d42b22 (patch)
tree974de2bc93d5862a3288f37018fb41d0d6a622a4 /cpp/src/slice2confluence/Gen.cpp
parentPreprocessor fix (diff)
downloadice-e0381d075f800ca89085d3ead77569c7b7d42b22.tar.bz2
ice-e0381d075f800ca89085d3ead77569c7b7d42b22.tar.xz
ice-e0381d075f800ca89085d3ead77569c7b7d42b22.zip
slice2confluence fixes
Diffstat (limited to 'cpp/src/slice2confluence/Gen.cpp')
-rw-r--r--cpp/src/slice2confluence/Gen.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/slice2confluence/Gen.cpp b/cpp/src/slice2confluence/Gen.cpp
index 5610fd65c61..064236b0c61 100644
--- a/cpp/src/slice2confluence/Gen.cpp
+++ b/cpp/src/slice2confluence/Gen.cpp
@@ -1017,7 +1017,8 @@ Slice::GeneratorBase::toString(const SyntaxTreeBasePtr& p, const ContainerPtr& c
"string",
"Object",
"Object*",
- "LocalObject"
+ "LocalObject",
+ "Value"
};
BuiltinPtr builtin = BuiltinPtr::dynamicCast(p);
@@ -1234,7 +1235,6 @@ Slice::GeneratorBase::getComment(const ContainedPtr& contained, const ContainerP
static const string atLink = "{@link";
string::size_type pos = s.find(atLink, i);
- comment += Confluence::ConfluenceOutput::TEMP_ESCAPER_START;
if(pos != i)
{
comment += '{';
@@ -1248,6 +1248,7 @@ Slice::GeneratorBase::getComment(const ContainedPtr& contained, const ContainerP
}
string literal = s.substr(pos + atLink.size(), endpos - pos - atLink.size());
size_t sz = 0;
+ comment += Confluence::ConfluenceOutput::TEMP_ESCAPER_START;
comment += toString(toSliceID(literal, contained->file()), container, false, forIndex, summary ? &sz : 0);
comment += Confluence::ConfluenceOutput::TEMP_ESCAPER_END;
summarySize += sz;