Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v1.4.1 to not destroy original CString
Browse files Browse the repository at this point in the history
### Releases v1.4.1

1. Don't need `memmove()`, CString no longer destroyed. Check [All memmove() removed - string no longer destroyed #11](#11)
  • Loading branch information
khoih-prog committed Oct 5, 2022
1 parent 7d33b11 commit 6d44b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6d44b65

Please sign in to comment.