-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build with gcc #27
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dreiss has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
kDescriptor needs full qualification because gcc complained of a mismatched declaration and definition otherwise. SimpleFixedString got FBJNI_HAS_FEATURE because `#if defined(foo) && foo(bar)` is a preprocessor syntax error with gcc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dreiss has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
Summary: kDescriptor needs full qualification because gcc complained of a mismatched declaration and definition otherwise. SimpleFixedString conditions were reordered because `#if defined(foo) && foo(bar)` is a preprocessor syntax error with gcc. Pull Request resolved: facebookincubator/fbjni#27 Reviewed By: swolchok Differential Revision: D19233972 Pulled By: dreiss fbshipit-source-id: 60a2f1a9aa96ff4c35915e045481835041245c1f
Summary: kDescriptor needs full qualification because gcc complained of a mismatched declaration and definition otherwise. SimpleFixedString conditions were reordered because `#if defined(foo) && foo(bar)` is a preprocessor syntax error with gcc. Pull Request resolved: facebookincubator/fbjni#27 Reviewed By: swolchok Differential Revision: D19233972 Pulled By: dreiss fbshipit-source-id: 60a2f1a9aa96ff4c35915e045481835041245c1f
Summary: kDescriptor needs full qualification because gcc complained of a mismatched declaration and definition otherwise. SimpleFixedString conditions were reordered because `#if defined(foo) && foo(bar)` is a preprocessor syntax error with gcc. Pull Request resolved: facebookincubator/fbjni#27 Reviewed By: swolchok Differential Revision: D19233972 Pulled By: dreiss fbshipit-source-id: 60a2f1a9aa96ff4c35915e045481835041245c1f
kDescriptor needs full qualification because gcc complained of a
mismatched declaration and definition otherwise.
SimpleFixedString conditions were reordered because
#if defined(foo) && foo(bar)
is a preprocessor syntax error with gcc.