On Mon, Sep 9, 2013, at 04:49 PM, Oliver Kowalke wrote:
> The proposal suggestes that from_string(const string& str) returns an
> address_v4 value corresponding to the string str or address_v4()
> otherwise.
> address_v4() is equivalent to address_v4::any() which is a valid
> ip-address.
Where there are two overloads of the form:
static address from_string(const string& str);
static address from_string(const string& str, error_code& ec);
The first form is supposed to throw a system_error exception. Looks like
that detail got left out of the document.
Cheers,
Chris