1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 22:40:51 -08:00

The alignment declspec isn't supported by msvc 6 anyway.

Copied from Perforce
 Change: 179449
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2012-09-12 19:16:53 +01:00
parent 1256fe09dc
commit a237ef8cfa

View file

@ -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