Revision: 16285
Author: [email protected]
Date: Fri Aug 23 08:43:57 2013 UTC
Log: Fix compilation on Windows after r16284
BUG=None
[email protected]
Review URL: https://codereview.chromium.org/23361023
http://code.google.com/p/v8/source/detail?r=16285
Modified:
/branches/bleeding_edge/src/circular-queue.h
=======================================
--- /branches/bleeding_edge/src/circular-queue.h Fri Aug 23 08:22:07 2013
UTC
+++ /branches/bleeding_edge/src/circular-queue.h Fri Aug 23 08:43:57 2013
UTC
@@ -79,8 +79,8 @@
Entry* Next(Entry* entry);
Entry buffer_[Length];
- Entry* enqueue_pos_ V8_ALIGNAS(PROCESSOR_CACHE_LINE_SIZE);
- Entry* dequeue_pos_ V8_ALIGNAS(PROCESSOR_CACHE_LINE_SIZE);
+ V8_ALIGNAS(PROCESSOR_CACHE_LINE_SIZE) Entry* enqueue_pos_;
+ V8_ALIGNAS(PROCESSOR_CACHE_LINE_SIZE) Entry* dequeue_pos_;
DISALLOW_COPY_AND_ASSIGN(SamplingCircularQueue);
};
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.