mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 11:55: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
				
			@@ -34,7 +34,6 @@
 | 
			
		||||
#include "etlng/LedgerPublisherInterface.hpp"
 | 
			
		||||
#include "etlng/LoadBalancerInterface.hpp"
 | 
			
		||||
#include "etlng/LoaderInterface.hpp"
 | 
			
		||||
#include "etlng/Models.hpp"
 | 
			
		||||
#include "etlng/MonitorInterface.hpp"
 | 
			
		||||
#include "etlng/MonitorProviderInterface.hpp"
 | 
			
		||||
#include "etlng/TaskManagerProviderInterface.hpp"
 | 
			
		||||
@@ -68,7 +67,6 @@
 | 
			
		||||
#include <optional>
 | 
			
		||||
#include <string>
 | 
			
		||||
#include <utility>
 | 
			
		||||
#include <vector>
 | 
			
		||||
 | 
			
		||||
namespace etlng {
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -35,7 +35,6 @@
 | 
			
		||||
#include "etlng/TaskManagerInterface.hpp"
 | 
			
		||||
#include "etlng/TaskManagerProviderInterface.hpp"
 | 
			
		||||
#include "util/BinaryTestObject.hpp"
 | 
			
		||||
#include "util/MockAssert.hpp"
 | 
			
		||||
#include "util/MockBackendTestFixture.hpp"
 | 
			
		||||
#include "util/MockLedgerPublisher.hpp"
 | 
			
		||||
#include "util/MockLoadBalancer.hpp"
 | 
			
		||||
 
 | 
			
		||||
@@ -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