missing body for "<function name>" declared at <line number>

28
Jan

All the functions and procedures defined in your Ada declarative section (with GNAT, the .ads file) must have a body defined in the implementation of that package. When the body was not yet written, this error occurs.

Write all the functions and procedures and try compiling again. If you don't yet have the code for them, use a null statement as in:

1
 
0
Your rating: None