diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-01-08 22:51:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-01-08 22:51:05 (GMT) |
commit | 3777f4139d272ca93b890f2f61f5c7d9e8f29887 (patch) | |
tree | 0c5dd4b8b632c2aa0422eeaf9f53e93485c7f117 /Source/kwsys/SystemInformation.cxx | |
parent | 91edea1b8d03e900e56f0d42a0a7996d0314a0ac (diff) | |
download | CMake-3777f4139d272ca93b890f2f61f5c7d9e8f29887.zip CMake-3777f4139d272ca93b890f2f61f5c7d9e8f29887.tar.gz CMake-3777f4139d272ca93b890f2f61f5c7d9e8f29887.tar.bz2 |
ENH: figure out long long value
Diffstat (limited to 'Source/kwsys/SystemInformation.cxx')
-rw-r--r-- | Source/kwsys/SystemInformation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/SystemInformation.cxx b/Source/kwsys/SystemInformation.cxx index 91446ad..f0064f7 100644 --- a/Source/kwsys/SystemInformation.cxx +++ b/Source/kwsys/SystemInformation.cxx @@ -516,7 +516,7 @@ bool SystemInformation::RetrieveCPUIdentity() { #ifdef WIN32 int localCPUVendor[3]; - int locallocalCPUSignature; + int localCPUSignature; // Use assembly to detect CPUID information... __try @@ -1946,7 +1946,7 @@ unsigned long SystemInformation::GetAvailablePhysicalMemory() } /** Get Cycle differences */ -long long SystemInformation::GetCyclesDifference (DELAY_FUNC DelayFunction, +LongLong SystemInformation::GetCyclesDifference (DELAY_FUNC DelayFunction, unsigned int uiParameter) { #ifdef WIN32 |