ModelState.warning

Writes an warning to the warning sink.

  1. void warning(nstring msg, const(char)* file, uint line)
    struct ModelState
    @nogc pragma(inline, true)
    void
    warning
    (
    nstring msg
    ,
    const(char)* file = __MODULE__.ptr
    ,
    uint line = __LINE__
    )
  2. void warning(const(char)* msg, const(char)* file, uint line)

Parameters

msg nstring

The message.

file const(char)*

The file the warning occured in.

line uint

The line of the file the warning occured in.

Meta