| 2237 | } |
| 2238 | |
| 2239 | bool cmMakefile::PlatformIs64Bit() const |
| 2240 | { |
| 2241 | if (cmValue sizeof_dptr = this->GetDefinition("CMAKE_SIZEOF_VOID_P")) { |
| 2242 | return atoi(sizeof_dptr->c_str()) == 8; |
| 2243 | } |
| 2244 | return false; |
| 2245 | } |
| 2246 | |
| 2247 | bool cmMakefile::PlatformIsx32() const |
| 2248 | { |
no test coverage detected