Update DataArray.h

Fix title case and add a line
This commit is contained in:
Derek "Turtle" Roe 2021-03-17 04:25:42 -05:00
parent 1249e1f9f0
commit 3f9431d609
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@
// template class helpers with functions for comparing elements // template class helpers with functions for comparing elements
// override if using complex types without operator== // override if using complex types without operator==
template <class T> template <class T>
class CListCtrlArrayEqualHelper class CListCtrlArrayEqualHelper
{ {
@ -182,7 +183,7 @@ public:
if(TEqual::IsEqual(m_aT[i], t)) if(TEqual::IsEqual(m_aT[i], t))
return i; return i;
} }
return -1; // not found return -1; // Not found
} }
BOOL SetAtIndex(int nIndex, const T& t) BOOL SetAtIndex(int nIndex, const T& t)