Search

January 12, 2023
Issues »
...by the use of ecs_assert macro, which uses assert internally.

Currently ImportC fails to...
January 12, 2023
Issues »
...assert:

#  define assert(expr)                                                  \
  ((void) sizeof ((expr) ? 1 : 0), __extension__ ({                     \
      if (expr)                                                         \
        ; /* empty */                                                   \
      else                                                              \
        __assert...
January 11, 2023
General »
...int i = 0x8000_0000;
    assert(i >>  31 == 0xffff_ffff);  // sign extended
    assert(i >>> 31 == 0x0000...
January 11, 2023
General »
...error because >>> should be used instead of >>

```d
    u >>>= 1U;
    assert( u == 64 );
```

SDB@79
January 11, 2023
Issues »
...14790 "fix Issue 23218 - cgxmm.d:1373 assert fail" mentioning this issue:

- ci: Update cirrus...
January 11, 2023
Issues »
...14790 "fix Issue 23218 - cgxmm.d:1373 assert fail" mentioning this issue:

- handle byte, short...
January 11, 2023
Learn »
...Testing ", type);
        static foreach (func; functions) {
            static assert (is (typeof(func(type.init)) == type));
        }
    }
}

It...
January 11, 2023
Issues »
...ushort ee = tru;
    ee <<= 5U;
    ee >>= 5U;
    assert(((tru << 5U) >> 5U) == ee);
}

Seems similar to...
January 10, 2023
Issues »
...auto opDispatch(string name, T ...)(T t) {
    assert(currentIndex < arrayOfS.length);
    alias member = __traits(getMember...
January 10, 2023
General »
...this could be simplified to

```
throw new Exception(assert(0));
```
Or...
```
assert(false, assert(false));
```
110 111 112 113 114 115 116 117 118 119 120
Next ›   Last »