summaryrefslogtreecommitdiff
path: root/Source/cmDocumentation.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-07-23 17:27:34 -0400
committerBrad King <brad.king@kitware.com>2003-07-23 17:27:34 -0400
commitfde552ea6e43b9950029883076377f750bd60ce7 (patch)
tree24a214774317b943a68fa930736856dc66979a9e /Source/cmDocumentation.cxx
parent6f1a0440184e040c7ed0d21cd8e5f46b6177df3e (diff)
downloadcmake-fde552ea6e43b9950029883076377f750bd60ce7.tar.gz
ENH: CheckOptions now takes const argv.
Diffstat (limited to 'Source/cmDocumentation.cxx')
-rw-r--r--Source/cmDocumentation.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx
index 1571406226..ec0018fe87 100644
--- a/Source/cmDocumentation.cxx
+++ b/Source/cmDocumentation.cxx
@@ -222,7 +222,7 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
}
//----------------------------------------------------------------------------
-bool cmDocumentation::CheckOptions(int argc, char** argv)
+bool cmDocumentation::CheckOptions(int argc, const char* const* argv)
{
// Providing zero arguments gives usage information.
if(argc == 1)