verror

Same as error, but takes a va_list parameter, and optionally additional message prefixes.

nothrow extern (C++)
void
verror
(
const ref Loc loc
,
const(char)* format
,
va_list ap
,
const(char)* p1 = null
,
const(char)* p2 = null
,
const(char)* header = "Error: "
)

Parameters

loc Loc

location of error

format const(char)*

printf-style format specification

ap va_list

printf-style variadic arguments

p1 const(char)*

additional message prefix

p2 const(char)*

additional message prefix

header const(char)*

title of error message

Suggestion Box / Bug Report