diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-05-17 14:07:51 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-05-17 14:07:51 (GMT) |
commit | 871f7cf2220906169bf1f7aebdf508c2e57ba2e1 (patch) | |
tree | d74b617827f536ceea81c05dda2f7829645942c8 /Modules/CMakeCCompilerId.c | |
parent | 0c7130905d3e32dd521bbcbf043c589ef5b6b1e5 (diff) | |
download | CMake-871f7cf2220906169bf1f7aebdf508c2e57ba2e1.zip CMake-871f7cf2220906169bf1f7aebdf508c2e57ba2e1.tar.gz CMake-871f7cf2220906169bf1f7aebdf508c2e57ba2e1.tar.bz2 |
ENH: fix up compiler id to be more robust
Diffstat (limited to 'Modules/CMakeCCompilerId.c')
-rw-r--r-- | Modules/CMakeCCompilerId.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeCCompilerId.c b/Modules/CMakeCCompilerId.c index 0d8a215..045b6ae 100644 --- a/Modules/CMakeCCompilerId.c +++ b/Modules/CMakeCCompilerId.c @@ -47,5 +47,5 @@ static char const info_compiler[] = "INFO:compiler[" /* Make sure the information strings are referenced. */ int main() { - return ((int)&info_compiler) + ((int)&info_platform); + return (&info_compiler[0] != &info_platform[0]); } |