- Status Closed
- Percent Complete
- Task Type Bug Report
- Category Backend / Core
- Assigned To No-one
- Operating System All
- Severity Low
- Priority Very Low
- Reported Version 1.0
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
Attached to Project: Graphic Utility Library
Opened by Michael Pfeuti - 2012-03-30
Last edited by Michael Pfeuti - 2012-09-14
Opened by Michael Pfeuti - 2012-03-30
Last edited by Michael Pfeuti - 2012-09-14
FS#3177 - Mutable String
make string mutable. it's not worth the pain of having immutable/noncopyable strings. Especially without smart pointers. It would become easier but still you cannot write
string x ("ksjcnsk"=
string y = x;
for(..)
{
y = x.Replace(...);
}
we need to create many instances on the heap and delete them again.