diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-14 21:44:21 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-14 22:41:40 (GMT) |
commit | 38df5c36d66313a5dd7859c1c55a41f60f141b13 (patch) | |
tree | 01edfb795e3825fb89057452d897811a5e3d42ea /Source/cmGeneratorExpressionNode.cxx | |
parent | 4ee2b2670854b071c8b8ceafb2a4a00f72069ef9 (diff) | |
download | CMake-38df5c36d66313a5dd7859c1c55a41f60f141b13.zip CMake-38df5c36d66313a5dd7859c1c55a41f60f141b13.tar.gz CMake-38df5c36d66313a5dd7859c1c55a41f60f141b13.tar.bz2 |
Remove now-obsolete casts.
Diffstat (limited to 'Source/cmGeneratorExpressionNode.cxx')
-rw-r--r-- | Source/cmGeneratorExpressionNode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx index aa6f54b..e3253da 100644 --- a/Source/cmGeneratorExpressionNode.cxx +++ b/Source/cmGeneratorExpressionNode.cxx @@ -1632,7 +1632,7 @@ struct TargetFilesystemArtifactResultCreator<ArtifactPdbTag> return std::string(); } - cmState::TargetType targetType = (cmState::TargetType)target->GetType(); + cmState::TargetType targetType = target->GetType(); if(targetType != cmState::SHARED_LIBRARY && targetType != cmState::MODULE_LIBRARY && |