Another win32 build fix.

This commit is contained in:
harry 2023-05-19 22:37:13 -04:00
parent 2d896c10bc
commit 6fb899e9a1
1 changed files with 1 additions and 3 deletions

View File

@ -44,8 +44,6 @@ void timeStampRecord::readNew(void)
tsc = rdtsc();
}
static timeStampRecord cal_t1, cal_t2, cal_td;
class timeStampModule
{
public:
@ -53,7 +51,7 @@ class timeStampModule
{
printf("timeStampModuleInit\n");
#if defined(WIN32)
if (QueryPerformanceFrequency((LARGE_INTEGER*)&StampRecord::qpcFreq) == 0)
if (QueryPerformanceFrequency((LARGE_INTEGER*)&timeStampRecord::qpcFreq) == 0)
{
printf("QueryPerformanceFrequency FAILED!\n");
}