BUG: Do not use bitwise OR on bool.

This commit is contained in:
Brad King 2007-02-01 15:44:39 -05:00
parent 05b5600444
commit 7e896821f5
1 changed files with 1 additions and 1 deletions

View File

@ -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.