From 9f38df7046dfdad0cff0095ada3ace52afe28c34 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 14 Dec 2005 10:58:09 -0500 Subject: [PATCH] COMP: Fix conversion warning. --- Source/cmLocalUnixMakefileGenerator3.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index c27afcf39..3f59c9781 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);