diff options
author | Brad King <brad.king@kitware.com> | 2007-01-22 15:52:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-01-22 15:52:24 (GMT) |
commit | 1e566707daeb7ce71bee2c1c09b412e603f04bb5 (patch) | |
tree | 63b8c2f37e2f36ff31e40c4bdfa22bee27de3ab6 /Source/cmDocumentation.h | |
parent | d0a49dbd91bdd0b0cf035e07d567f6a96be2cc60 (diff) | |
download | CMake-1e566707daeb7ce71bee2c1c09b412e603f04bb5.zip CMake-1e566707daeb7ce71bee2c1c09b412e603f04bb5.tar.gz CMake-1e566707daeb7ce71bee2c1c09b412e603f04bb5.tar.bz2 |
COMP: Patch from Alex for const correctness.
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r-- | Source/cmDocumentation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index 53ced44..0aa81de 100644 --- a/Source/cmDocumentation.h +++ b/Source/cmDocumentation.h @@ -155,8 +155,8 @@ private: const cmDocumentationEntry* section, const cmDocumentationEntry* footer, std::vector<cmDocumentationEntry>&); - const char* GetNameString(); - bool IsOption(const char* arg); + const char* GetNameString() const; + bool IsOption(const char* arg) const; std::string NameString; std::vector<cmDocumentationEntry> NameSection; |