Fix a build break in ArenaAllocator.
authorPat Gavlin <pagavlin@microsoft.com>
Mon, 29 Feb 2016 22:40:59 +0000 (14:40 -0800)
committerPat Gavlin <pagavlin@microsoft.com>
Mon, 29 Feb 2016 22:40:59 +0000 (14:40 -0800)
commitfae40713f43f72701a36851f177d1a61d34e40d3
treeab965bb5208b2470d0b603d956e515d9ebb39fdc
parent2d98b6a53263b9ad4b98e4a5dee35e703fd7ddf5
Fix a build break in ArenaAllocator.

The toolset used by the internal build (and the ARM build in CI) seems to be a bit
buggy w.r.t. move assignment and deleted assignment operators. In particular,
it attempts to generate an assignment operator for a derived type whose base
type has deleted the corresponding operator and it chooses deleted copy
assignment operators over move assignment operators unless std::move is
used.

[tfs-changeset: 1579941]
src/jit/alloc.cpp