Revision: 15754
Author:   [email protected]
Date:     Thu Jul 18 07:32:06 2013
Log:      One more Windows compilation fix after r15750

BUG=None
[email protected]

Review URL: https://codereview.chromium.org/19471006
http://code.google.com/p/v8/source/detail?r=15754

Modified:
 /branches/bleeding_edge/src/circular-queue.cc

=======================================
--- /branches/bleeding_edge/src/circular-queue.cc       Thu Jul 18 07:28:00 2013
+++ /branches/bleeding_edge/src/circular-queue.cc       Thu Jul 18 07:32:06 2013
@@ -74,7 +74,7 @@
   // The distance ensures that producer and consumer never step on
   // each other's chunks and helps eviction of produced data from
   // the CPU cache (having that chunk size is bigger than the cache.)
-  const int producer_consumer_distance = (2 * chunk_size_);
+  const size_t producer_consumer_distance = (2 * chunk_size_);
consumer_pos_->dequeue_chunk_poll_pos = buffer_ + producer_consumer_distance;
   consumer_pos_->dequeue_pos = NULL;
 }

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


Reply via email to