You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * When mixed in a aggregate this template has for effect to disable the usage * the $(D new) operator.*/mixintemplate disableNew()
{
@disablenew (size_t){returnnull;}
}
///unittest
{
// class requiring users to use allocators.classNotUsableWithNew
{
mixin disableNew;
}
// statically verify that `new` cannot be used.staticassert(!__traits(compiles, new NotUsableWithNew));
}
The text was updated successfully, but these errors were encountered:
By Basile, co-invented with Ketmar and Adam
The text was updated successfully, but these errors were encountered: