diff options
Diffstat (limited to 'xfa/fgas/crt/fgas_algorithm.h')
-rw-r--r-- | xfa/fgas/crt/fgas_algorithm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fgas/crt/fgas_algorithm.h b/xfa/fgas/crt/fgas_algorithm.h index 94a0d06f9e..9fefb2bc40 100644 --- a/xfa/fgas/crt/fgas_algorithm.h +++ b/xfa/fgas/crt/fgas_algorithm.h @@ -31,7 +31,7 @@ template <class baseType> class CFX_DSPATemplate { public: int32_t Lookup(const baseType& find, const baseType* pArray, int32_t iCount) { - FXSYS_assert(pArray != NULL); + ASSERT(pArray != NULL); if (iCount < 1) { return -1; } |