Search

February 12, 2024
Learn »
I've run into size_t vs int issues many times.  About half the time...
February 12, 2024
General »
...or-less the same size. :-D

However nobody...software development. I won't go so far...
February 12, 2024
General »
...you won't be able to recompile it. Good luck.

[...]

Reducing code size is, to...
February 12, 2024
Issues »
...with

---
void __qsort_r_compat(void *, size_t, size_t, void *,
     int (*)(void *, const void...
February 12, 2024
Issues »
...void qsort_r(void *base, size_t nmemb, size_t size,
    void *thunk, int (*compar...
February 12, 2024
Issues »
...85783 – alloc-size-larger-than fires incorrectly with new[] and
can't be disabled...
February 11, 2024
Issues »
...Error: `char[cast(size_t)2147483648]` size 1 * 2147483648 exceeds 0x7fffffff
size limit for static...
February 08, 2024
General »
...by a flexible ABI.

1. The tag [``size_t``]
2. Copy constructor [``function``]
3. Destructor...
February 08, 2024
Issues »
...an error message.

Minimal example:

---
void func(size_t argc = 0, string[] argv...) {}

void main...
February 07, 2024
General »
...For instance:

```d
struct BaseVector(T) {
    T* ptr;
    size_t length;
    // member functions that are...
21 22 23 24 25 26 27 28 29 30 31 32
Next ›   Last »