Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit dfef4e9

Browse files
authored
fix1
1 parent 5fcb5d4 commit dfef4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/tier1/UtlSortVector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ void CUtlSortVector<T, LessFunc>::QuickSort( LessFunc& less, int nLower, int nUp
177177
ctx.m_pLessContext = m_pLessContext;
178178
ctx.m_pLessFunc = &less;
179179

180-
qsort_s( Base(), Count(), sizeof(T), (QSortCompareFunc_t)&CUtlSortVector<T, LessFunc>::CompareHelper, &ctx );
180+
qsort_s( this->Base(), this->Count(), sizeof(T), (QSortCompareFunc_t)&CUtlSortVector<T, LessFunc>::CompareHelper, &ctx );
181181
}
182182
#else
183183
typedef int (__cdecl *QSortCompareFunc_t)( const void *, const void *);

0 commit comments

Comments
 (0)