You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did not have this issue before but as soon as I was updating one of my older projects, I had to adjust this function in the snowflake.h header file on line 73.
Original Code: return operator==(static_cast<DiscordObject>(object));
Built using vcpkg as a static library.
Did not have this issue before but as soon as I was updating one of my older projects, I had to adjust this function in the snowflake.h header file on line 73.
Original Code:
return operator==(static_cast<DiscordObject>(object));
Adjusted Code:
return this->operator==(static_cast<DiscordObject>(object));
Hope this fixes the issue to anyone having this issue.
Visual Studio 2022
SDK Version: 10.0.22621.0
Platform Toolset: v143
C++ Language Standard: C++17 Standard
The text was updated successfully, but these errors were encountered: