summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wasm/wasm-binary.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp
index f98eff670..6c79a9032 100644
--- a/src/wasm/wasm-binary.cpp
+++ b/src/wasm/wasm-binary.cpp
@@ -97,7 +97,7 @@ void WasmBinaryWriter::finishSection(int32_t start) {
if (sizeFieldSize != MaxLEB32Bytes) {
// we can save some room, nice
assert(sizeFieldSize < MaxLEB32Bytes);
- std::move(&o[start + MaxLEB32Bytes], &o[start + MaxLEB32Bytes + size], &o[start + sizeFieldSize]);
+ std::move(&o[start] + MaxLEB32Bytes, &o[start] + MaxLEB32Bytes + size, &o[start] + sizeFieldSize);
o.resize(o.size() - (MaxLEB32Bytes - sizeFieldSize));
}
}
@@ -280,7 +280,7 @@ void WasmBinaryWriter::writeFunctions() {
if (sizeFieldSize != MaxLEB32Bytes) {
// we can save some room, nice
assert(sizeFieldSize < MaxLEB32Bytes);
- std::move(&o[start], &o[start + size], &o[sizePos + sizeFieldSize]);
+ std::move(&o[start], &o[start] + size, &o[sizePos] + sizeFieldSize);
o.resize(o.size() - (MaxLEB32Bytes - sizeFieldSize));
}
}