Search

October 18
Learn »
...nogc:

	this() scope {}

	void method1() scope {}

	scope { // ok
		void method2() {}
	}

scope: // no indication at function...
October 16
Issues »
...main.h>
//

clang -c SDL3.c # compile OK
ldc -c SDL3.c   # compile ERRORS
/usr...
October 15
Learn »
...c lib.c # compile OK
dmd -c lib.c   # compile OK with WARNING
lib.c...
October 15
Learn »
...c lib.c # compile OK
dmd -c lib.c   # compile OK with WARNING
lib.c...
October 15
Issues »
...c lib.c # compile OK
dmd -c lib.c   # compile OK with WARNING
lib.c...
October 13
Issues »
...double _Float64x;
//

clang -c lib.c # compile OK
dmd -c lib.c   # compile ERRORS
lib...
October 13
Learn »
...f()
{
    int i;
    scope s = S(&i); // OK (scope will be inferred if missing)
    return...
October 13
General »
...s=2; // ok, actually does `S s=S(2)`
    S t=s; // ok, actually does...
October 10
Issues »
...main()
{
    {
        shared S original;
        S copy = original; // ok
    }
    {
        shared T original;
        T copy = original; // fails...
October 06
Learn »
...dup;

I think casting away const is OK because the AA produced by `dup` is...
1 2 3 4 5 6
Next ›   Last »