Ada Information Clearinghouse states the following:
The use of pragma
Inline
does have its disadvantages. It can create compilation dependencies on the body; that is, when the specification uses a pragmaInline
, both the specification and corresponding body may need to be compiled before the specification can be used.
Does putting pragma Inline
in the body avoid this problem?