diff options
| author | Richard Brooksby | 2012-09-12 19:16:53 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2012-09-12 19:16:53 +0100 |
| commit | a237ef8cfa69001e31ee29db31b1dbe338cfdf6d (patch) | |
| tree | 370ea349f6a828c404dd7c990d30e4ba5e481588 /mps/code | |
| parent | 1256fe09dcbae099885b701c4e110cb28fab9989 (diff) | |
| download | emacs-a237ef8cfa69001e31ee29db31b1dbe338cfdf6d.tar.gz emacs-a237ef8cfa69001e31ee29db31b1dbe338cfdf6d.zip | |
The alignment declspec isn't supported by msvc 6 anyway.
Copied from Perforce
Change: 179449
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/eventcom.h | 2 |
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 |