Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add a type cast to RCT_ENUM_CONVERTER for C++ compatibility #14408

Closed
wants to merge 1 commit into from

Conversation

jballer
Copy link
Contributor

@jballer jballer commented Jun 8, 2017

Motivation

C++ doesn't provide an implicit cast to an enum value from the enum's backing type. When a .mm file calls RCT_ENUM_CONVERTER, we end up with the following compiler error:

Error: cannot initialize return object of type <TypeName> with an rvalue of type NSInteger

Since RCT_ENUM_CONVERTER is a macro, this error will appear whenever we try to expand the macro in a C++ context.

Test Plan

The project compiles and runs as expected when this additional cast is added 😃

@facebook-github-bot facebook-github-bot added GH Review: review-needed CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. labels Jun 8, 2017
@javache
Copy link
Member

javache commented Jun 8, 2017

What type are you trying to convert? [NSNumber getter] should already be giving you the right type.

@jballer
Copy link
Contributor Author

jballer commented Jun 8, 2017

The C++ compiler expects the enum type ("TypeName" in typedef NS_ENUM(NSInteger, TypeName)…).

The getter (in this case, integerValue) is properly returning the enum's NSInteger backing type. In standard ObjC this will compile without issue, but C++ requires an explicit cast from NSInteger back to the enum type.

More explicitly, the problem in the C++ compiler is that the macro expands to:

+(TypeName)TypeName:(id)json
{
  …
  return [… integerValue]; // fine in ObjC, but in ObjC++ this isn't the same as TypeName
}

@facebook-github-bot facebook-github-bot added the Import Started This pull request has been imported. This does not imply the PR has been approved. label Jun 9, 2017
@facebook-github-bot
Copy link
Contributor

@jballer has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. Import Started This pull request has been imported. This does not imply the PR has been approved.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants