I have the following code:
with Util.Serialise;
package body blah is
Reader : Util.Serialize.IO.JSON.Parser;
Mapper : Util.Serialize.Mappers.Processing;
end blah;
So the line where Reader is defined is fine with the compiler, however on the following I get the error Mappers not declared in Serialize.
Both packages are part of the Ada-Util installation, and in fact are in the same directory.
Is this a path issue? Have I used things wrongly? What's going on here?