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
I have a M1 MacBook Air and I built Ripes for it and I would like to include it in the pre-build binaries.
The change that I had to do to source code to achieve this was only this:
I have a M1 MacBook Air and I built Ripes for it and I would like to include it in the pre-build binaries.
The change that I had to do to source code to achieve this was only this:
In file
Ripes/external/VSRTL/external/cereal/include/cereal/external/rapidjson/document.h
In line 319 there is this block of code:
GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; // <-- error (length is const) return *this; }
And I commented out the error:
GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; return *this; }
The text was updated successfully, but these errors were encountered: