Results 1 to 2 of 2
Using mpicc compiler i take the follow warning for each file of my code which include only one function:
In file.h i have all prototypes for functions.
file.h(511): warning #92: ...
- 08-04-2011 #1Just Joined!
- Join Date
- Jun 2010
- Posts
- 24
Warning #92 of c
Using mpicc compiler i take the follow warning for each file of my code which include only one function:
In file.h i have all prototypes for functions.
file.h(511): warning #92: identifier-list parameters may only be used in a function definition
What mean this?
- 08-08-2011 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
Without seeing what you are doing I can only surmise that you are trying to define the function in the header, not in a source (not header) file.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote