Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
  • Loading branch information
misonijnik committed Sep 4, 2024
1 parent 66ab47c commit 2ef1930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Core/Memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ class ConcreteStore {
}

void writeBytes(size_t offset, uint8_t *value) {
assert(value.size() == byteWidth);
// assert(value.size() == byteWidth);
std::copy(value, value + byteWidth, store.begin() + offset * byteWidth);
}

Expand Down

0 comments on commit 2ef1930

Please sign in to comment.