Skip to content

Commit

Permalink
fix #46: missing void return type in method LinkedList::clear
Browse files Browse the repository at this point in the history
  • Loading branch information
dingmaotu committed Sep 9, 2019
1 parent e06d4c1 commit a109f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Collection/LinkedList.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public:
//| Remove all elements of the LinkedList |
//+------------------------------------------------------------------+
template<typename T>
LinkedList::clear(void)
void LinkedList::clear(void)
{
LinkedNode<T>*node=m_base.m_head.next();
while(node!=m_base.m_tail)
Expand Down

0 comments on commit a109f2c

Please sign in to comment.