diff options
author | Artur Ryt <artur.ryt@gmail.com> | 2018-11-30 20:08:44 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-11 14:51:30 -0500 |
commit | 4308eb3d165dfc473182021c12ec877e388f60a2 (patch) | |
tree | e9755be87f244180041f9d3b56832fa0499ece50 /Source/cmDocumentationSection.h | |
parent | 5a283b79e5fe1739142cc513a9a701855849b2f8 (diff) | |
download | cmake-4308eb3d165dfc473182021c12ec877e388f60a2.tar.gz |
cmDocumentationSection: Remove unused parameter in constructor
Diffstat (limited to 'Source/cmDocumentationSection.h')
-rw-r--r-- | Source/cmDocumentationSection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDocumentationSection.h b/Source/cmDocumentationSection.h index d9e8187f8c..7031b525d6 100644 --- a/Source/cmDocumentationSection.h +++ b/Source/cmDocumentationSection.h @@ -19,7 +19,7 @@ class cmDocumentationSection { public: /** Create a cmSection, with a special name for man-output mode. */ - cmDocumentationSection(const char* name, const char*) + explicit cmDocumentationSection(const char* name) : Name(name) { } |