View source code
Display the source code in dmd/cond.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.

Function dmd.cond.DebugCondition.addGlobalIdent

Add an user-supplied identifier to the list of global debug identifiers

static deprecated extern(C++) void addGlobalIdent(
  const(char)* ident
);

static void addGlobalIdent(
  string ident
);

static void addGlobalIdent(
  const(char)[] ident
);

Can be called from either the driver or a debug = Ident; statement. Unlike version identifier, there isn't any reserved debug identifier so no validation takes place.

Parameters

NameDescription
ident identifier to add

Authors

Walter Bright

License

Boost License 1.0