Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions Rx.NET/Source/src/System.Reactive/Internal/PriorityQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ namespace System.Reactive
{
internal class PriorityQueue<T> where T : IComparable<T>
{
#if !NO_INTERLOCKED_64
private static long _count = long.MinValue;
#else
private static int _count = int.MinValue;
#endif
private IndexedItem[] _items;
private int _size;

Expand Down Expand Up @@ -138,11 +134,7 @@ public bool Remove(T item)
struct IndexedItem : IComparable<IndexedItem>
{
public T Value;
#if !NO_INTERLOCKED_64
public long Id;
#else
public int Id;
#endif

public int CompareTo(IndexedItem other)
{
Expand Down