2010-04-15 Jérémie Laval <jeremie.laval@gmail.com>
[mono.git] / mcs / class / System / System.Collections.Concurrent / ConcurrentBag.cs
index 02fcc03e974d56a04b61e9eef9510a51b166f103..984a4a69767459c78fa7b7642e45309fa623949a 100644 (file)
@@ -41,8 +41,8 @@ namespace System.Collections.Concurrent
        [DebuggerTypeProxy (typeof (CollectionDebuggerView<>))]
        public class ConcurrentBag<T> : IProducerConsumerCollection<T>, IEnumerable<T>, IEnumerable
        {
+               const int multiplier = 2;
                int size = Environment.ProcessorCount + 1;
-               int multiplier = 2;
                int count;
                
                CyclicDeque<T>[] container;