diff --git a/Rx.NET/Source/src/System.Reactive/Internal/PriorityQueue.cs b/Rx.NET/Source/src/System.Reactive/Internal/PriorityQueue.cs index 010634868..406c18d3c 100644 --- a/Rx.NET/Source/src/System.Reactive/Internal/PriorityQueue.cs +++ b/Rx.NET/Source/src/System.Reactive/Internal/PriorityQueue.cs @@ -9,11 +9,7 @@ namespace System.Reactive { internal class PriorityQueue where T : IComparable { -#if !NO_INTERLOCKED_64 private static long _count = long.MinValue; -#else - private static int _count = int.MinValue; -#endif private IndexedItem[] _items; private int _size; @@ -138,11 +134,7 @@ public bool Remove(T item) struct IndexedItem : IComparable { public T Value; -#if !NO_INTERLOCKED_64 public long Id; -#else - public int Id; -#endif public int CompareTo(IndexedItem other) {