Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ABeltramo authored and actions-user committed Oct 10, 2024
1 parent a0008aa commit c004a25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/moonlight-server/runners/child_session.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class RunChildSession : public events::Runner {
std::shared_ptr<events::EventBusType> ev_bus,
state::SessionsAtoms running_sessions)
: ev_bus(std::move(ev_bus)), parent_session_id(parent_session_id),
running_sessions(std::move(running_sessions)) {};
running_sessions(std::move(running_sessions)){};

void run(std::size_t session_id,
std::string_view app_state_folder,
Expand Down
4 changes: 3 additions & 1 deletion src/moonlight-server/state/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ using namespace wolf::config;
*
* If the source is not present, it'll provide some sensible defaults
*/
Config load_or_default(const std::string &source, const std::shared_ptr<events::EventBusType> &ev_bus, state::SessionsAtoms running_sessions);
Config load_or_default(const std::string &source,
const std::shared_ptr<events::EventBusType> &ev_bus,
state::SessionsAtoms running_sessions);

/**
* Side effect, will atomically update the paired clients list in cfg
Expand Down

0 comments on commit c004a25

Please sign in to comment.