Thread overview
[Issue 24343] Read only data used to initialize objects that are mostly zero
January 17
https://issues.dlang.org/show_bug.cgi?id=24343

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |industry

--
January 17
https://issues.dlang.org/show_bug.cgi?id=24343

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |performance

--
January 25
https://issues.dlang.org/show_bug.cgi?id=24343

--- Comment #1 from anonymous4 <dfj1esp02@sneakemail.com> ---
TypeInfo could have a member
---
byte pattern;
---
so that struct S { char[100] x; } (sockaddr_un?) could still be initialized
with memset.

--
February 23
https://issues.dlang.org/show_bug.cgi?id=24343

johanengelen@weka.io changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |johanengelen@weka.io

--- Comment #2 from johanengelen@weka.io ---
How will this code be treated?

```
const(void[]) f() {
    return __traits(initSymbol, T);
}
```

--