Skip to content

Commit

Permalink
updating flake lock
Browse files Browse the repository at this point in the history
  • Loading branch information
tanneberger committed Mar 31, 2023
1 parent 16418d8 commit a1fe394
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ int main() {
grpc::ServerBuilder builder;
builder.AddListeningPort(server_address, grpc::InsecureServerCredentials());
builder.RegisterService(&service);

std::unique_ptr<grpc::Server> server(builder.BuildAndStart());
std::cout << "Server listening on " << server_address << std::endl;
server->Wait();
Expand Down
3 changes: 1 addition & 2 deletions src/receives_waypoints.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ class ReceivesWaypointsImpl final : public tlms::ReceiveWaypoint::Service {
explicit ReceivesWaypointsImpl(unsigned short websocket_port) noexcept;
~ReceivesWaypointsImpl() noexcept override;

auto receive_waypoint(grpc::ServerContext *context, const tlms::GrpcWaypoint* waypoint,
tlms::ReturnCode *return_code) noexcept -> grpc::Status override;
auto receive_waypoint(grpc::ServerContext *context, const tlms::GrpcWaypoint* waypoint, tlms::ReturnCode *return_code) noexcept -> grpc::Status override;
};

#endif //FUNNEL_RECEIVES_TELEGRAMS_HPP

0 comments on commit a1fe394

Please sign in to comment.