Fixed write to not use reference.
This commit is contained in:
parent
81829f15f5
commit
b41e95250d
@ -232,7 +232,7 @@ namespace coreutils {
|
||||
return *this;
|
||||
}
|
||||
|
||||
MString &MString::write(ZString &value) {
|
||||
MString &MString::write(ZString value) {
|
||||
int len = length;
|
||||
setSize(length + value.getLength());
|
||||
memcpy(data + len, value.getData(), value.getLength());
|
||||
|
Loading…
x
Reference in New Issue
Block a user