Opened 16 years ago
Closed 16 years ago
#136 closed defect (fixed)
Pointer type not parsed in formal parameter list
| Reported by: | Stephen Siegel | Owned by: | ywei |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | front | Version: | 1.0 |
| Keywords: | pointer | Cc: |
Description
Something like
void MPI_Send(real* buffer, int count, int destination, int tag) {
yields this error:
line 21:18 extraneous input '*' expecting IDENTIFIER
Change History (2)
comment:1 by , 16 years ago
| Status: | new → accepted |
|---|
comment:2 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | accepted → closed |
Note:
See TracTickets
for help on using tickets.

Fixed. I forgot to add the pointer feature to the argument declaration. Now the argument declaration can use pointer type.