-
Notifications
You must be signed in to change notification settings - Fork 240
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
unqualified call to 'std::move' UE5.1 and MacOS #375
Comments
From my Windows computer, when trying to package for Android I also get the following issue : |
Which plugin version are you trying to build/package? |
Using the master branch :
|
Looks like it complains about: https://github.com/getnamo/SocketIOClient-Unreal/blob/master/Source/SocketIOLib/Public/sio_message.h#L208 and the second line is not referenced inside the plugin so may not be related. For the first error you can try to remove the Edit: I believe the correct fix is |
See if https://github.com/getnamo/SocketIOClient-Unreal/tree/Stdmove fixed the warning error for you |
I had the same issue after upgrading from 5.1 to 5.2. Adding std:: to move helped. |
This error also happens for cross compiling for Linux. I implemented the changes in |
This was fixed in #376 and should be closed |
Hello, I am having the following issue when trying to build the project wich was working fine few days ago :
sio_message.h(208, 38): unqualified call to 'std::move' [-Werror,-Wunqualified-std-cast-call]
I get this error everywhere this function is called. Interesting to note there's also another error :
WindowsPlatformApplicationMisc.h(42, 5): 'WINDOWS_USE_FEATURE_APPLICATIONMISC_CLASS' is not defined, evaluates to 0 [-Werror,-Wundef]
I have latest macOS, Xcode (only used to generate project files), and Rider version. Using UE5.1.
The text was updated successfully, but these errors were encountered: