summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmDocumentation.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx
index 7f8c101..6c54254 100644
--- a/Source/cmDocumentation.cxx
+++ b/Source/cmDocumentation.cxx
@@ -465,8 +465,9 @@ bool cmDocumentation::CreateCustomModulesSection()
{
if (!sectionHasHeader)
{
- this->CustomModulesSection.Append(cmDocumentationCustomModulesHeader[0]);
- sectionHasHeader = true;
+ this->CustomModulesSection.Append(
+ cmDocumentationCustomModulesHeader[0]);
+ sectionHasHeader = true;
}
this->CreateModuleDocsForDir(dir, this->CustomModulesSection);
}
@@ -498,7 +499,8 @@ void cmDocumentation::CreateModuleDocsForDir(cmsys::Directory& dir,
std::string path = dir.GetPath();
path += "/";
path += fname;
- this->CreateSingleModule(path.c_str(), moduleName.c_str(), moduleSection);
+ this->CreateSingleModule(path.c_str(), moduleName.c_str(),
+ moduleSection);
}
}
}