From 7e896821f5249ccea03c3b7f44e194a3154f95a8 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 1 Feb 2007 15:44:39 -0500 Subject: BUG: Do not use bitwise OR on bool. --- Source/cmLocalVisualStudio7Generator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 333bcce..da579db 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1864,7 +1864,7 @@ void cmLocalVisualStudio7GeneratorOptions::HandleFlag(const char* flag) } // If the entry was found the flag has been handled. - flag_handled |= entry_found; + flag_handled = flag_handled || entry_found; } // If any map entry handled the flag we are done. -- cgit v0.12