Skip to content

Commit 963ca45

Browse files
authored
Heap::HeapFront: remove const modifier.
1 parent 9209979 commit 963ca45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DHeap/Heap.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ struct Heap(T)
111111
return (m_HeapType == HeapType.MIN_HEAP) ? p_Object0 < p_Object1 : p_Object0 > p_Object1;
112112
}
113113

114-
T HeapFront() const @property @safe @nogc
114+
T HeapFront() @property @safe @nogc
115115
{
116116
return m_HeapData[0];
117117
}

0 commit comments

Comments
 (0)