diff options
-rwxr-xr-x | indra/llmath/llvolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp index 8d6b3b926c..adf6e790d3 100755 --- a/indra/llmath/llvolume.cpp +++ b/indra/llmath/llvolume.cpp @@ -2692,7 +2692,7 @@ void LLVolume::copyFacesTo(std::vector<LLVolumeFace> &faces) const void LLVolume::copyFacesFrom(const std::vector<LLVolumeFace> &faces) { - mVolumeFaces = std::move(faces); + mVolumeFaces = faces; mSculptLevel = 0; } |