Mercurial > hg > svcore
changeset 1319:12a1da4719c7 3.0-integration
Remove unnecessary move()s
| author | Chris Cannam | 
|---|---|
| date | Wed, 07 Dec 2016 13:56:22 +0000 | 
| parents | f830a10bfbd6 | 
| children | 983667969a82 | 
| files | data/model/FFTModel.cpp | 
| diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] | 
line wrap: on
 line diff
--- a/data/model/FFTModel.cpp Mon Dec 05 16:54:19 2016 +0000 +++ b/data/model/FFTModel.cpp Wed Dec 07 13:56:22 2016 +0000 @@ -102,7 +102,7 @@ Column col; col.reserve(cplx.size()); for (auto c: cplx) col.push_back(abs(c)); - return move(col); + return col; } FFTModel::Column @@ -114,7 +114,7 @@ for (auto c: cplx) { col.push_back(arg(c)); } - return move(col); + return col; } float @@ -332,7 +332,7 @@ } m_cached.push_back(sc); - return move(col); + return col; } bool
