diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-25 01:19:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 18:05:39 (GMT) |
commit | 85fc9f26a703f28b356c93d405446c39bba43846 (patch) | |
tree | d69d4dd2a3be73d462350c6ea300448fd3c57178 /Source/cmDocumentationSection.h | |
parent | 6557382dcffef8ed6b11394cb65775d82f1c0aa7 (diff) | |
download | CMake-85fc9f26a703f28b356c93d405446c39bba43846.zip CMake-85fc9f26a703f28b356c93d405446c39bba43846.tar.gz CMake-85fc9f26a703f28b356c93d405446c39bba43846.tar.bz2 |
stringapi: Command names
Diffstat (limited to 'Source/cmDocumentationSection.h')
-rw-r--r-- | Source/cmDocumentationSection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDocumentationSection.h b/Source/cmDocumentationSection.h index 636860d..d796da8 100644 --- a/Source/cmDocumentationSection.h +++ b/Source/cmDocumentationSection.h @@ -34,8 +34,8 @@ public: void Clear() { this->Entries.clear(); } /** Return the name of this section. */ - const char* GetName() const - { return this->Name.c_str(); } + std::string GetName() const + { return this->Name; } /** Return a pointer to the first entry of this section. */ const std::vector<cmDocumentationEntry> &GetEntries() const |