File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4848 tidy-checks : " "
4949 step-summary : true
5050 file-annotations : true
51- ignore : subprojects|build|android|assets|recordings|docs|toolchains|platforms|src/libs/core/hash-library|wrapper/javascript/
51+ ignore : subprojects|build|android|assets|recordings|docs|toolchains|platforms|wrapper| src/libs/core/hash-library
5252
5353 - name : Fail CI run if linter checks failed
5454 if : steps.linter.outputs.checks-failed != 0
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ namespace scenes {
3131 // TODO(Totto): after the settings have been reworked, make this url changeable!
3232 auto maybe_client = lobby::Client::get_client (" http://127.0.0.1:5000" );
3333 if (maybe_client.has_value ()) {
34- client = std::make_unique<lobby::Client>(std::move (maybe_client.value ()));
34+ m_client = std::make_unique<lobby::Client>(std::move (maybe_client.value ()));
3535 } else {
3636 spdlog::error (" Error in connecting to lobby client: {}" , maybe_client.error ());
3737 }
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ namespace scenes {
1717
1818 ui::TileLayout m_main_layout;
1919 std::optional<Command> m_next_command;
20- std::unique_ptr<lobby::Client> client { nullptr };
20+ std::unique_ptr<lobby::Client> m_client { nullptr };
2121
2222 public:
2323 explicit OnlineLobby (ServiceProvider* service_provider, const ui::Layout& layout);
You can’t perform that action at this time.
0 commit comments