diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-06 16:34:23 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-06 16:34:23 (GMT) |
commit | 385377cf1cca1d3cd9b1d3e318f43f0becf531cc (patch) | |
tree | 3f4c19699dbc347d33b76b7e4d5461e969efe92f /Source/cmDocumentationFormatterHTML.cxx | |
parent | adddcea5d7e52d4ef0522a2dbefa3d952f1da333 (diff) | |
download | CMake-385377cf1cca1d3cd9b1d3e318f43f0becf531cc.zip CMake-385377cf1cca1d3cd9b1d3e318f43f0becf531cc.tar.gz CMake-385377cf1cca1d3cd9b1d3e318f43f0becf531cc.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmDocumentationFormatterHTML.cxx')
-rw-r--r-- | Source/cmDocumentationFormatterHTML.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDocumentationFormatterHTML.cxx b/Source/cmDocumentationFormatterHTML.cxx index c3b0dee..cb8fac1 100644 --- a/Source/cmDocumentationFormatterHTML.cxx +++ b/Source/cmDocumentationFormatterHTML.cxx @@ -217,7 +217,8 @@ void cmDocumentationFormatterHTML { std::string name = sections[i]-> GetName((this->GetForm())); - os << " <li><a href=\"#section_" << name << "\"<b>" << name << "</b></a></li>\n"; + os << " <li><a href=\"#section_" + << name << "\"<b>" << name << "</b></a></li>\n"; } os << "</ul>\n"; } |