aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code')
-rw-r--r--mps/code/eventcom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/eventcom.h b/mps/code/eventcom.h
index ca4af0b6b00..131bc8e1823 100644
--- a/mps/code/eventcom.h
+++ b/mps/code/eventcom.h
@@ -68,7 +68,7 @@ typedef union EventClockUnion {
68 68
69#define EVENT_CLOCK(lvalue) \ 69#define EVENT_CLOCK(lvalue) \
70 BEGIN \ 70 BEGIN \
71 __declspec(align(16)) LARGE_INTEGER _count; \ 71 LARGE_INTEGER _count; \
72 QueryPerformanceCounter(&_count); \ 72 QueryPerformanceCounter(&_count); \
73 (lvalue) = _count.QuadPart; \ 73 (lvalue) = _count.QuadPart; \
74 END 74 END