Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C++ build fixes #207

Merged
merged 18 commits into from
May 29, 2024
2 changes: 1 addition & 1 deletion cpp/Chat/client/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ run(shared_ptr<Ice::Communicator> communicator)
// provided by the router
Ice::Identity id{Ice::generateUUID(), router->getCategoryForClient()};

Chat::ChatRoomCallbackPrx callbackPrx = adapter->add(make_shared<ChatRoomCallbackI>(), id);
auto callbackPrx = Chat::ChatRoomCallbackPrx{adapter->add(make_shared<ChatRoomCallbackI>(), id)};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or

Chat::ChatRoomCallbackPrx callbackPrx{adapter->add(make_shared<ChatRoomCallbackI>(), id)};


// Set the callback proxy on the session
session->setCallback(callbackPrx);
Expand Down
Loading