Merge topic 'minor-cleanup'

e3b7eac Style: Don't put an else after a return.
ad304a2 cmSystemTools: Fix typo in comment.
08319e0 Genex: Fix indentation in docs.
This commit is contained in:
Brad King 2013-06-14 09:00:26 -04:00 committed by CMake Topic Stage
commit bbaae3e421
3 changed files with 3 additions and 6 deletions

View File

@ -44,9 +44,9 @@
"used.\n" \ "used.\n" \
" $<C_COMPILER_ID:comp> = '1' if the CMake-id of the C " \ " $<C_COMPILER_ID:comp> = '1' if the CMake-id of the C " \
"compiler matches comp, otherwise '0'.\n" \ "compiler matches comp, otherwise '0'.\n" \
" $<CXX_COMPILER_ID> = The CMake-id of the CXX compiler " \ " $<CXX_COMPILER_ID> = The CMake-id of the CXX compiler " \
"used.\n" \ "used.\n" \
" $<CXX_COMPILER_ID:comp> = '1' if the CMake-id of the CXX " \ " $<CXX_COMPILER_ID:comp> = '1' if the CMake-id of the CXX " \
"compiler matches comp, otherwise '0'.\n" \ "compiler matches comp, otherwise '0'.\n" \
" $<TARGET_FILE:tgt> = main file (.exe, .so.1.2, .a)\n" \ " $<TARGET_FILE:tgt> = main file (.exe, .so.1.2, .a)\n" \
" $<TARGET_LINKER_FILE:tgt> = file used to link (.a, .lib, .so)\n" \ " $<TARGET_LINKER_FILE:tgt> = file used to link (.a, .lib, .so)\n" \

View File

@ -266,8 +266,6 @@ struct CompilerIdNode : public cmGeneratorExpressionNode
{ {
return compilerId ? compilerId : ""; return compilerId ? compilerId : "";
} }
else
{
cmsys::RegularExpression compilerIdValidator; cmsys::RegularExpression compilerIdValidator;
compilerIdValidator.compile("^[A-Za-z0-9_]*$"); compilerIdValidator.compile("^[A-Za-z0-9_]*$");
if (!compilerIdValidator.find(parameters.begin()->c_str())) if (!compilerIdValidator.find(parameters.begin()->c_str()))
@ -286,7 +284,6 @@ struct CompilerIdNode : public cmGeneratorExpressionNode
return "1"; return "1";
} }
return "0"; return "0";
}
} }
}; };

View File

@ -274,7 +274,7 @@ public:
static bool GetRunCommandOutput() { return s_DisableRunCommandOutput; } static bool GetRunCommandOutput() { return s_DisableRunCommandOutput; }
/** /**
* Come constants for different file formats. * Some constants for different file formats.
*/ */
enum FileFormat { enum FileFormat {
NO_FILE_FORMAT = 0, NO_FILE_FORMAT = 0,