-
-
Notifications
You must be signed in to change notification settings - Fork 308
Open
Description
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; }
Metadata
Metadata
Assignees
Labels
No labels