From 1358009382fe8bac2fea64e31851c75f750274b9 Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Tue, 5 Jun 2007 16:37:27 -0400 Subject: [PATCH] STYLE: fix comment Alex --- Source/cmGlobalUnixMakefileGenerator3.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index 8fd2f2b95..02a1c444d 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -132,14 +132,13 @@ public: unsigned long GetNumberOfProgressActionsInAll (cmLocalUnixMakefileGenerator3 *lg); - /** Get whether the generator should use a script for link commands. */ - bool GetForceVerboseMakefiles() { return this->ForceVerboseMakefiles; } /** - * If set to true, the CMake variable CMAKE_VERBOSE_MAKEFILES doesn't have + * If true, the CMake variable CMAKE_VERBOSE_MAKEFILES doesn't have effect * anymore. Set it to true when writing a generator where short output * doesn't make sense, e.g. because the full output is parsed by an * IDE/editor. */ + bool GetForceVerboseMakefiles() { return this->ForceVerboseMakefiles; } void SetForceVerboseMakefiles(bool enable) {this->ForceVerboseMakefiles=enable;}