mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 03:05:51 +00:00
style: clang-tidy auto fixes (#2245)
Fixes #2244. Please review and commit clang-tidy fixes. Co-authored-by: godexsoft <385326+godexsoft@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
63ec563135
commit
27e29d0421
@@ -319,7 +319,7 @@ TEST_F(GrpcSourceStopTests, LoadInitialLedgerStopsWhenRequested)
|
||||
EXPECT_EQ(request->user(), "ETL");
|
||||
|
||||
{
|
||||
std::unique_lock lk(mtx);
|
||||
std::unique_lock const lk(mtx);
|
||||
grpcCallIsActive = true;
|
||||
}
|
||||
cvGrpcCallActive.notify_one();
|
||||
@@ -347,7 +347,7 @@ TEST_F(GrpcSourceStopTests, LoadInitialLedgerStopsWhenRequested)
|
||||
runSyncOperation([&](boost::asio::yield_context yield) {
|
||||
grpcSource_.stop(yield);
|
||||
{
|
||||
std::unique_lock lk(mtx);
|
||||
std::unique_lock const lk(mtx);
|
||||
stopHasBeenCalled = true;
|
||||
}
|
||||
cvStopCalled.notify_one();
|
||||
|
||||
Reference in New Issue
Block a user