File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ struct mir_rcarray(T)
340
340
mir_rcarray! (immutable T) lightImmutable()() scope return immutable @nogc nothrow @trusted @property
341
341
{ return cast (typeof (return )) this ; }
342
342
343
- size_t opDollar (size_t pos : 0 )() @trusted scope pure nothrow @nogc
343
+ size_t opDollar (size_t pos : 0 )() @trusted scope pure nothrow @nogc const
344
344
{
345
345
return _context ! is null ? _context.length : 0 ;
346
346
}
@@ -568,17 +568,17 @@ version(mir_test)
568
568
this (this ) @nogc nothrow @safe
569
569
{
570
570
() @trusted {
571
- // puts("this(this)\n");
571
+ puts(" this(this)\n " );
572
572
} ();
573
573
}
574
574
575
575
~this () nothrow @nogc @safe
576
576
{
577
577
() @trusted {
578
- // if (s)
579
- // puts("~this()\n");
580
- // else
581
- // puts("~this() - zero\n");
578
+ if (s)
579
+ puts(" ~this()\n " );
580
+ else
581
+ puts(" ~this() - zero\n " );
582
582
} ();
583
583
}
584
584
}
You can’t perform that action at this time.
0 commit comments