diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-22 15:43:59 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-22 15:43:59 +0000 |
commit | 0eda0f82a74e57e8ec25faf7afefccf6796c8f28 (patch) | |
tree | d1958ea8855adb6998773d392a1fcff8da5032be /cpp | |
parent | Changed property name (diff) | |
download | ice-0eda0f82a74e57e8ec25faf7afefccf6796c8f28.tar.bz2 ice-0eda0f82a74e57e8ec25faf7afefccf6796c8f28.tar.xz ice-0eda0f82a74e57e8ec25faf7afefccf6796c8f28.zip |
BCC compile error fix
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/slice2html/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index aab26ce8b8e..bc4eae1ad34 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -1114,7 +1114,7 @@ Slice::GeneratorBase::getLinkPath(const SyntaxTreeBasePtr& p, const ContainerPtr { path += "/"; } - path += target.front() == "index" ? "_index" : target.front(); + path += target.front() == "index" ? string("_index") : target.front(); target.pop_front(); } |