diff options
Diffstat (limited to 'src/fbasicstring.h')
-rw-r--r-- | src/fbasicstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fbasicstring.h b/src/fbasicstring.h index 670873e..19853f5 100644 --- a/src/fbasicstring.h +++ b/src/fbasicstring.h | |||
@@ -1040,7 +1040,7 @@ namespace Bu | |||
1040 | nLen = core->nLength-nPos; | 1040 | nLen = core->nLength-nPos; |
1041 | flatten(); | 1041 | flatten(); |
1042 | _hardCopy(); | 1042 | _hardCopy(); |
1043 | cpy( core->pFirst->pData+nPos, core->pFirst->pData+nPos+nLen, core->nLength-nPos-nLen+1 ); | 1043 | memmove( core->pFirst->pData+nPos, core->pFirst->pData+nPos+nLen, core->nLength-nPos-nLen+1 ); |
1044 | core->nLength -= nLen; | 1044 | core->nLength -= nLen; |
1045 | core->pFirst->nLength -= nLen; | 1045 | core->pFirst->nLength -= nLen; |
1046 | } | 1046 | } |