From a237ef8cfa69001e31ee29db31b1dbe338cfdf6d Mon Sep 17 00:00:00 2001 From: Richard Brooksby Date: Wed, 12 Sep 2012 19:16:53 +0100 Subject: [PATCH] The alignment declspec isn't supported by msvc 6 anyway. Copied from Perforce Change: 179449 ServerID: perforce.ravenbrook.com --- mps/code/eventcom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { #define EVENT_CLOCK(lvalue) \ BEGIN \ - __declspec(align(16)) LARGE_INTEGER _count; \ + LARGE_INTEGER _count; \ QueryPerformanceCounter(&_count); \ (lvalue) = _count.QuadPart; \ END