Skip to content

Commit

Permalink
set a default lambda value for if_hp_realtek_device_.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 718010557
  • Loading branch information
suetfei authored and copybara-github committed Jan 21, 2025
1 parent b0be56b commit d47ef23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connections/implementation/service_controller_router.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class ServiceControllerRouter {
ServiceController* GetServiceController();

private:
absl::AnyInvocable<bool()> if_hp_realtek_device_;
absl::AnyInvocable<bool()> if_hp_realtek_device_ = []() { return false; };
void RouteToServiceController(const std::string& name, Runnable runnable);
void FinishClientSession(ClientProxy* client);

Expand Down

0 comments on commit d47ef23

Please sign in to comment.