Commit 25e4ad19 authored by Wouter van Oortmerssen's avatar Wouter van Oortmerssen

Merge pull request #3889 from PSPDFKit-labs/james/avoid-msvc-align-error

MSVC doesn't allow alignment on function params.
parents 06eb6e94 b1e8be27
...@@ -333,7 +333,7 @@ public: ...@@ -333,7 +333,7 @@ public:
// Change elements if you have a non-const pointer to this object. // Change elements if you have a non-const pointer to this object.
// Scalars only. See reflection.h, and the documentation. // Scalars only. See reflection.h, and the documentation.
void Mutate(uoffset_t i, T val) { void Mutate(uoffset_t i, const T& val) {
assert(i < size()); assert(i < size());
WriteScalar(data() + i, val); WriteScalar(data() + i, val);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment