fix: remove redundant moves (#4565)

- Resolve gcc compiler warning:
      AccountObjects.cpp:182:47: warning: redundant move in initialization [-Wredundant-move]
  - The std::move() operation on trivially copyable types may generate a
    compile warning in newer versions of gcc.
- Remove extraneous header (unused imports) from a unit test file.
This commit is contained in:
Chenna Keshava B S
2023-06-09 17:33:28 -07:00
committed by GitHub
parent 5d011c7e6b
commit 77c0a62a74
2 changed files with 2 additions and 4 deletions

View File

@@ -18,7 +18,6 @@
*/
//==============================================================================
#include <ripple/app/ledger/LedgerMaster.h>
#include <ripple/app/reporting/P2pProxy.h>
#include <ripple/beast/unit_test.h>
#include <ripple/rpc/impl/Tuning.h>