summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-12-14 15:58:09 (GMT)
committerBrad King <brad.king@kitware.com>2005-12-14 15:58:09 (GMT)
commit9f38df7046dfdad0cff0095ada3ace52afe28c34 (patch)
tree9030b25f903540e4d0deb23113c881ad3a4d5809 /Source/cmLocalUnixMakefileGenerator3.cxx
parent163e3ff56c2d591a902cae018ead930633914b4c (diff)
downloadCMake-9f38df7046dfdad0cff0095ada3ace52afe28c34.zip
CMake-9f38df7046dfdad0cff0095ada3ace52afe28c34.tar.gz
CMake-9f38df7046dfdad0cff0095ada3ace52afe28c34.tar.bz2
COMP: Fix conversion warning.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index c27afcf..3f59c97 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -2183,7 +2183,7 @@ cmLocalUnixMakefileGenerator3
cmTarget* target = m_Makefile->FindTarget(name);
// If no target was found in the current makefile search globally.
- bool local = target;
+ bool local = target?true:false;
if(!local)
{
target = m_GlobalGenerator->FindTarget(0, name);