-
Notifications
You must be signed in to change notification settings - Fork 41
Conversation
dbeb714
to
87297bf
Compare
@@ -74,4 +61,17 @@ namespace signalr | |||
SIGNALRCLIENT_API pplx::task<void> __cdecl invoke_void(const utility::string_t& method_name, const web::json::value& arguments, | |||
const on_progress_handler& on_progress); | |||
}; | |||
|
|||
template<> | |||
inline pplx::task<void> hub_proxy::invoke<void>(const utility::string_t& method_name, const on_progress_handler& on_progress) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any particular reason for this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. It won't compile with gcc. From what I remember when I hit this it turned out that the compiler in VS allows both but only the definition outside the class is per standard and the definition inside class is an extension
How do you build on Linux? I tried using CMake but hitting some errors |
@BrennanConroy - I will be adding building instructions to README but in general you do this:
There are some issues with the tests:
Thanks for looking at this. |
@moozzyk I haven't looked at this super carefully, but it seems good to me. Do you want someone else to try running this? I have an Arch Linux VM which might show us something new. |
@halter73 - Thanks for taking a look. It would be great to try it in a different setup I tried so far (keeping in mind that Linux support is experimental at this point - see my comment about tests). |
I'm hitting an error with the make_unique on line 27 of connection_implementation.cpp Sent from my HTC ----- Reply message ----- @halter73https://github.com/halter73 - Thanks for taking a look. It would be great to try it in a different setup I tried so far (keeping in mind that Linux support is experimental at this point - see my comment about tests). Reply to this email directly or view it on GitHubhttps://github.com/aspnet/SignalR-Client-Cpp/pull/132#issuecomment-164105765. |
Weird - I did not see it. I will try to |
87297bf
to
89a35ae
Compare
89a35ae
to
5dfa11e
Compare
@BrennanConroy - I fixed the issue with make_unique and moved to cpprestsdk 2.7.0. |
Looks good, seeing these 2 errors
|
Thanks @BrennanConroy - I filed a bug for this: https://github.com/aspnet/SignalR-Client-Cpp/issues/136 |
No description provided.