diff options
author | Brad King <brad.king@kitware.com> | 2009-09-11 08:18:15 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-11 08:18:15 -0400 |
commit | b41a548d86f8989e790f0150abd3eb337e8c03d0 (patch) | |
tree | e22e5e910e1b5769e8bcec6fa20ac703df013e55 /Source/cmUtilitySourceCommand.cxx | |
parent | e0df0495e5b313e1f017ebb938c4522db6d5b89c (diff) | |
download | cmake-b41a548d86f8989e790f0150abd3eb337e8c03d0.tar.gz |
Add parentheses around '&&' between '||' for gcc
The GNU compiler warns about possible operator precedence mistakes and
asks for explicit parentheses (-Wparentheses). We add the parentheses
to silence the warning. This also fixes one real logic error in the
find_package() implementation by correcting expression evaluation order.
Diffstat (limited to 'Source/cmUtilitySourceCommand.cxx')
-rw-r--r-- | Source/cmUtilitySourceCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUtilitySourceCommand.cxx b/Source/cmUtilitySourceCommand.cxx index f8683cee3e..929696f179 100644 --- a/Source/cmUtilitySourceCommand.cxx +++ b/Source/cmUtilitySourceCommand.cxx @@ -56,7 +56,7 @@ bool cmUtilitySourceCommand { haveCacheValue = (cacheValue && (strstr(cacheValue, "(IntDir)") == 0 || - intDir && strcmp(intDir, "$(IntDir)") == 0) && + (intDir && strcmp(intDir, "$(IntDir)") == 0)) && (this->Makefile->GetCacheMajorVersion() != 0 && this->Makefile->GetCacheMinorVersion() != 0 )); } |