Search

June 29, 2021
General »
...the function pointers to be initialized to dummy functions which do nothing.

Let's have...
June 14, 2021
Issues »
...mixin template ISR() {
        enum dummy = 0;
        alias impl = __traits(parent, dummy);
        enum number = mixin(__traits...
June 13, 2021
Issues »
...bar' in the generated object. To work around, nest the function in a dummy struct.

--
June 13, 2021
Issues »
...unrecognized `pragma(mangle)`

To workaround, use a dummy struct:

void main() {
    static struct S {
       pragma...
June 03, 2021
Announce »
At first, when I saw the title, I thought Ali applied some D code to...
May 15, 2021
Learn »
...C c=null;
	@disable this();

	this(int dummy) {
		c=new C();
		writeln("Constructor");
		};//Constructor

	~this...
April 17, 2021
Issues »
...enum inter = {
      struct Dummy{mixin(a);}
      foreach(member_name; __traits(allMembers, Dummy)){
        if(member_name...
April 06, 2021
Issues »
...doing the right thing by first making a dummy instantiation which does not access `result`.

--
February 27, 2021
General »
...struct DThinksThisIsSafe
{
   union Storage { int value; void *dummy; }
   Storage storage;
   @safe ref int get() return...
February 27, 2021
General »
...Unsafe(T)
{
    union Storage { T value; void* dummy; }
    Storage storage;
    ref T get() { return Storage...
5 6 7 8 9 10 11 12 13 14 15 16
Next ›   Last »