|
From: Fergus H. <fj...@cs...> - 2001-02-22 07:31:36
|
On 22-Feb-2001, Ina Cheng <in...@st...> wrote:
> +:- pred generate_Hello_body(string, list(univ), string).
> +:- mode generate_Hello_body(in, in, out).
Add `is det' at the end of the mode declaration.
(Sorry, the compiler's error message is awful.)
> + % Generates SOAP message body for GetStockPrice.
> + % XXX assume no namespace and client has a copy of the schema
> + % used in the server side to encode mercury types.
> +:- pred generate_SP_body(method, list(univ), string).
> +:- mode generate_SP_body(in, in, out).
Likewise here.
> +:- pred insert_envelope(string::in, string::in, string::out).
And here.
Not sure if I caught them all, try compiling with `--no-infer-det'.
--
Fergus Henderson <fj...@cs...> | "I have always known that the pursuit
| of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh> | -- the last words of T. S. Garp.
|