Loading libutils/String16.cpp +0 −2 Original line number Diff line number Diff line Loading @@ -346,7 +346,6 @@ void* String16::edit() { if (isStaticString()) { buf = static_cast<SharedBuffer*>(alloc((size() + 1) * sizeof(char16_t))); if (buf) { buf->acquire(); memcpy(buf->data(), mString, (size() + 1) * sizeof(char16_t)); } } else { Loading @@ -365,7 +364,6 @@ void* String16::editResize(size_t newSize) { } buf = static_cast<SharedBuffer*>(alloc(newSize)); if (buf) { buf->acquire(); memcpy(buf->data(), mString, copySize); } } else { Loading Loading
libutils/String16.cpp +0 −2 Original line number Diff line number Diff line Loading @@ -346,7 +346,6 @@ void* String16::edit() { if (isStaticString()) { buf = static_cast<SharedBuffer*>(alloc((size() + 1) * sizeof(char16_t))); if (buf) { buf->acquire(); memcpy(buf->data(), mString, (size() + 1) * sizeof(char16_t)); } } else { Loading @@ -365,7 +364,6 @@ void* String16::editResize(size_t newSize) { } buf = static_cast<SharedBuffer*>(alloc(newSize)); if (buf) { buf->acquire(); memcpy(buf->data(), mString, copySize); } } else { Loading