|
|
|
|
|
- Reason
- Correction
- Examples
- Two structures with the same name are declared in the same process
- Two structures with the same name but using different members are found in the same process
Error 120: Redefinition of the structure
You are trying to declare two structures with the same name in the same process. Rename one of the structures or delete the useless declaration. Two structures with the same name are declared in the same process Code triggering the error Point_Coord is Structure x,y are int END ... Point_Coord is Structure x,y are int END
Possible correction Delete the second structure (useless declaration). Point_Coord is Structure x,y are int END
Two structures with the same name but using different members are found in the same process Code triggering the error Point_Coord is Structure x,y are int END ... Point_Coord is Structure Coord_x,Coord_y are real END
Possible correction Delete the second declaration (that is useless). Point_Coord is Structure x,y are int END ... Image_Point_Coord is Structure Coord_x,Coord_y are real END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|