summaryrefslogtreecommitdiff
path: root/Source/cmGeneratorExpressionNode.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-14 23:44:21 +0200
committerStephen Kelly <steveire@gmail.com>2015-10-15 00:41:40 +0200
commit38df5c36d66313a5dd7859c1c55a41f60f141b13 (patch)
tree01edfb795e3825fb89057452d897811a5e3d42ea /Source/cmGeneratorExpressionNode.cxx
parent4ee2b2670854b071c8b8ceafb2a4a00f72069ef9 (diff)
downloadcmake-38df5c36d66313a5dd7859c1c55a41f60f141b13.tar.gz
Remove now-obsolete casts.
Diffstat (limited to 'Source/cmGeneratorExpressionNode.cxx')
-rw-r--r--Source/cmGeneratorExpressionNode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx
index aa6f54b51c..e3253da040 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 &&