Another win32 build fix.
This commit is contained in:
parent
2d896c10bc
commit
6fb899e9a1
|
@ -44,8 +44,6 @@ void timeStampRecord::readNew(void)
|
||||||
tsc = rdtsc();
|
tsc = rdtsc();
|
||||||
}
|
}
|
||||||
|
|
||||||
static timeStampRecord cal_t1, cal_t2, cal_td;
|
|
||||||
|
|
||||||
class timeStampModule
|
class timeStampModule
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -53,7 +51,7 @@ class timeStampModule
|
||||||
{
|
{
|
||||||
printf("timeStampModuleInit\n");
|
printf("timeStampModuleInit\n");
|
||||||
#if defined(WIN32)
|
#if defined(WIN32)
|
||||||
if (QueryPerformanceFrequency((LARGE_INTEGER*)&StampRecord::qpcFreq) == 0)
|
if (QueryPerformanceFrequency((LARGE_INTEGER*)&timeStampRecord::qpcFreq) == 0)
|
||||||
{
|
{
|
||||||
printf("QueryPerformanceFrequency FAILED!\n");
|
printf("QueryPerformanceFrequency FAILED!\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue