Skip to content

Commit 88d9163

Browse files
committed
🎨 Linting
1 parent f8c2999 commit 88d9163

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CMakeLists.txt

+7-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ else()
2424
include(cmake/Fetch_asyncpp.cmake)
2525
endif()
2626

27-
add_library(asyncpp_grpc ${CMAKE_CURRENT_SOURCE_DIR}/src/grpc/client_cq.cpp
28-
${CMAKE_CURRENT_SOURCE_DIR}/src/grpc/server.cpp
29-
${CMAKE_CURRENT_SOURCE_DIR}/src/grpc/util.cpp)
27+
add_library(
28+
asyncpp_grpc
29+
${CMAKE_CURRENT_SOURCE_DIR}/src/grpc/client_cq.cpp
30+
${CMAKE_CURRENT_SOURCE_DIR}/src/grpc/server.cpp
31+
${CMAKE_CURRENT_SOURCE_DIR}/src/grpc/util.cpp)
3032
target_link_libraries(
3133
asyncpp_grpc PUBLIC asyncpp gRPC::grpc++ protobuf::libprotobuf
3234
Threads::Threads)
@@ -48,7 +50,8 @@ if(ASYNCPP_BUILD_TEST)
4850

4951
add_executable(
5052
asyncpp_grpc-test
51-
${PROTO_SRCS} ${CMAKE_CURRENT_SOURCE_DIR}/test/traits.cpp
53+
${PROTO_SRCS}
54+
${CMAKE_CURRENT_SOURCE_DIR}/test/traits.cpp
5255
${CMAKE_CURRENT_SOURCE_DIR}/test/call.cpp
5356
${CMAKE_CURRENT_SOURCE_DIR}/test/client_cq.cpp
5457
${CMAKE_CURRENT_SOURCE_DIR}/test/task.cpp)

include/asyncpp/grpc/client_cq.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ namespace asyncpp::grpc {
3333

3434
static std::shared_ptr<client_cq> get_default();
3535
};
36-
} // namespace asyncpp::grpc
36+
} // namespace asyncpp::grpc

src/grpc/client_cq.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ namespace asyncpp::grpc {
4040
static auto instance = std::make_shared<client_cq>();
4141
return instance;
4242
}
43-
} // namespace asyncpp::grpc
43+
} // namespace asyncpp::grpc

0 commit comments

Comments
 (0)