diff options
author | Brad King <brad.king@kitware.com> | 2012-03-01 15:40:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-03-01 15:40:21 (GMT) |
commit | 09ff226e4c5489188a4e568df06a4f8e373ce5cd (patch) | |
tree | 35a70c95898cfc415b460de5dc900b05f96f7ccd /Source/cmMacroCommand.h | |
parent | 31ab25c0c9298aa833edd118752e97f15f7d8e2a (diff) | |
parent | 737c49a357e7a97b213857fd899081d42f38c143 (diff) | |
download | CMake-09ff226e4c5489188a4e568df06a4f8e373ce5cd.zip CMake-09ff226e4c5489188a4e568df06a4f8e373ce5cd.tar.gz CMake-09ff226e4c5489188a4e568df06a4f8e373ce5cd.tar.bz2 |
Merge branch 'add-const-qualifiers' into doxygen-fixes
Conflicts:
Source/cmPropertyDefinition.h
Diffstat (limited to 'Source/cmMacroCommand.h')
-rw-r--r-- | Source/cmMacroCommand.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMacroCommand.h b/Source/cmMacroCommand.h index 03aa72d..36e4b2f 100644 --- a/Source/cmMacroCommand.h +++ b/Source/cmMacroCommand.h @@ -52,17 +52,17 @@ public: /** * This determines if the command is invoked when in script mode. */ - virtual bool IsScriptable() { return true; } + virtual bool IsScriptable() const { return true; } /** * The name of the command as specified in CMakeList.txt. */ - virtual const char* GetName() { return "macro";} + virtual const char* GetName() const { return "macro";} /** * Succinct documentation. */ - virtual const char* GetTerseDocumentation() + virtual const char* GetTerseDocumentation() const { return "Start recording a macro for later invocation as a command."; } @@ -70,7 +70,7 @@ public: /** * More documentation. */ - virtual const char* GetFullDocumentation() + virtual const char* GetFullDocumentation() const { return " macro(<name> [arg1 [arg2 [arg3 ...]]])\n" |