We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code (upcfish.upc):
struct OceanGrid1{ int SharkForceY; }; struct Shark { shared struct OceanGrid1 *position1; shared struct OceanGrid *position; }; struct OceanGrid{ int SharkForceY; };
translates into
struct OceanGrid1 { int SharkForceY; }; struct Shark { upcr_pshared_ptr_t position1; struct OceanGrid; upcr_pshared_ptr_t position; }; struct OceanGrid { int SharkForceY; };
Line "struct OceanGrid" in the "Sahrk" structure is extra. It seems that it happens only on the incomplete types.
The text was updated successfully, but these errors were encountered:
31a8b46
swatanabe
No branches or pull requests
The following code (upcfish.upc):
translates into
Line "struct OceanGrid" in the "Sahrk" structure is extra. It seems that it happens only on the incomplete types.
The text was updated successfully, but these errors were encountered: