[CI] clang-tidy auto fixes (#1352)

Fixes #1351. Please review and commit clang-tidy fixes.

Co-authored-by: kuznetsss <kuznetsss@users.noreply.github.com>
Co-authored-by: Sergey Kuznetsov <skuznetsov@ripple.com>
This commit is contained in:
github-actions[bot]
2024-04-12 11:45:20 +01:00
committed by GitHub
parent 25876aef9b
commit 3fa1df9117
5 changed files with 7 additions and 6 deletions

View File

@@ -97,7 +97,7 @@ public:
*
* @param val The value that is deprecated
*/
Deprecated(T val) : value_(val)
Deprecated(T val) : value_(std::move(val))
{
}