Skip to content

Commit

Permalink
Merge pull request #1554 from berryzplus/feature/avoid_slice
Browse files Browse the repository at this point in the history
SonarScanで検出されたBugsレベル警告に対処する
  • Loading branch information
berryzplus authored Feb 26, 2021
2 parents da1c84b + 263410e commit b2178a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sakura_core/doc/layout/CLayoutMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ void CLayoutMgr::LayoutToLogic( const CLayoutPoint& ptLayout, CLogicPoint* pptLo
{
CLogicPointEx ptEx;
LayoutToLogicEx( ptLayout, &ptEx );
*pptLogic = ptEx;
*pptLogic = std::move(ptEx);
}

// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
Expand Down

0 comments on commit b2178a2

Please sign in to comment.