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
Hi ! I've started using RMStore, and I'm pretty happy with the ease of integration. However, I've noticed a small issue that is pretty easy to fix.
Description
Building the RMAppReceipt.m file in Objective-C++ fails due to use of the reserved keyword class and various implicit casts of void*to uint8_t *.
Steps to reproduce
In the demo project, either set the Compile Source asto Objective-C++in Xcode build settings or switch the RMAppReceipt.mfile type to Objective-C++ source.
Expected behavior
The project should build and run.
Actual behavior
A number of errors relating to the use of reserved keyword class and implicit casts are raised.
Proposed fix
I will create a pull request with the fix :
renaming class variables to clazz
explicititely casting all failing implicit casts
The text was updated successfully, but these errors were encountered:
Hi ! I've started using RMStore, and I'm pretty happy with the ease of integration. However, I've noticed a small issue that is pretty easy to fix.
Description
Building the RMAppReceipt.m file in
Objective-C++
fails due to use of the reserved keywordclass
and various implicit casts ofvoid*
touint8_t *
.Steps to reproduce
In the demo project, either set the
Compile Source as
toObjective-C++
in Xcode build settings or switch theRMAppReceipt.m
file type toObjective-C++
source.Expected behavior
The project should build and run.
Actual behavior
A number of errors relating to the use of reserved keyword
class
and implicit casts are raised.Proposed fix
I will create a pull request with the fix :
class
variables toclazz
The text was updated successfully, but these errors were encountered: