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
file:/Users/soroush/Projects/examples-lingua-franca/C/src/ChatApplication/BroadcastWithMultiport.lf:113:36: error: member reference base type 'struct people [1]' is not a structure or union
for(int i=0; i < people.receive_width; i++) {
~~~~~~^~~~~~~~~~~~~~
file:/Users/soroush/Projects/examples-lingua-franca/C/src/ChatApplication/BroadcastWithMultiport.lf:114:23: error: member reference base type 'struct people [1]' is not a structure or union
people.receive[i]->intended_tag = inherited_min_intended_tag;
~~~~~~^~~~~~~~
file:/Users/soroush/Projects/examples-lingua-franca/C/src/ChatApplication/BroadcastWithMultiport.lf:167:36: error: member reference base type 'struct people [1]' is not a structure or union
for(int i=0; i < people.receive_width; i++) {
~~~~~~^~~~~~~~~~~~~~
file:/Users/soroush/Projects/examples-lingua-franca/C/src/ChatApplication/BroadcastWithMultiport.lf:168:23: error: member reference base type 'struct people [1]' is not a structure or union
people.receive[i]->intended_tag = inherited_min_intended_tag;
~~~~~~^~~~~~~~
4 errors generated.
make[2]: *** [CMakeFiles/BroadcastWithMultiport_people__0.dir/BroadcastWithMultiport_people__0.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [CMakeFiles/BroadcastWithMultiport_people__0.dir/all] Error 2
make: *** [all] Error 2
Compiled binary is in /Users/soroush/Projects/examples-lingua-franca/C/bin
lfc: error: failed with error code 2
--> (unknown file):null:1 - failed with error code 2
lfc: fatal error: Aborting due to previous error
Changing the coordination to centralized fixes the issue.
The text was updated successfully, but these errors were encountered:
The following program fails to compile:
with the following error:
Changing the coordination to
centralized
fixes the issue.The text was updated successfully, but these errors were encountered: