summaryrefslogtreecommitdiff
path: root/core/fxcrt/include/fx_ext.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/include/fx_ext.h')
-rw-r--r--core/fxcrt/include/fx_ext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/include/fx_ext.h b/core/fxcrt/include/fx_ext.h
index e956d3cb43..b6c05ae9bc 100644
--- a/core/fxcrt/include/fx_ext.h
+++ b/core/fxcrt/include/fx_ext.h
@@ -110,7 +110,7 @@ template <class baseType>
class CFX_SSortTemplate {
public:
void ShellSort(baseType* pArray, int32_t iCount) {
- FXSYS_assert(pArray && iCount > 0);
+ ASSERT(pArray && iCount > 0);
int32_t i, j, gap;
baseType v1, v2;
gap = iCount >> 1;