From 6d44b6536cd0757c2abb9907cd9f3ad3f5942ac1 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Wed, 5 Oct 2022 00:16:44 -0400 Subject: [PATCH] v1.4.1 to not destroy original CString ### Releases v1.4.1 1. Don't need `memmove()`, CString no longer destroyed. Check [All memmove() removed - string no longer destroyed #11](https://github.com/khoih-prog/Portenta_H7_AsyncWebServer/pull/11) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 616ca67..930eec9 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ such as request->send(200, textPlainStr, cStr); ``` -The required HEAP is also about **3 times of the CString size** because of many `unnecessary copies` of the CString in HEAP. Avoid this `unefficient` way. +The required HEAP is also about **3 times of the CString size** because of many `unnecessary copies` of the CString in HEAP. Avoid this `unefficient` way. 3. To use `CString` without destroying it after sending. Use function