dlangBugzillaToGithub
dlangBugzillaToGithub
#### schveiguy (@schveiguy) commented on 2016-09-22T18:48:02Z ````markdown (In reply to Sobirari Muhomori from comment #1) > struct S > { > byte[3000] a,b; > } > void f(ref S s)...
#### dkorpel commented on 2024-02-26T17:56:56Z ````markdown The usual check for this is `static if (size_t.sizeof == 8)`. ````
#### turkeyman commented on 2024-02-26T19:16:58Z ````markdown That would tell you if you have 64bit address space. Not the same thing. ````
#### dkorpel commented on 2024-02-27T11:59:36Z ````markdown It usually is, so people tend to use it that way. Are you programming for the Nintendo 64 perhaps? :) I'm looking how other...
#### turkeyman commented on 2024-02-27T12:38:59Z ````markdown > It usually is, so people tend to use it that way. But it's not actually the same thing, and people using it that...
#### dkorpel commented on 2024-02-27T13:19:07Z ````markdown > It's difficult to imagine a case where this could be used where it's a compatibility issue; it's basically for optimisation opportunities, and nothing...
#### turkeyman commented on 2024-02-27T15:00:33Z ````markdown I think that's over-complicating it. Version is fine. ````
#### bugzilla (@WalterBright) commented on 2024-03-26T04:46:02Z ````markdown https://dlang.org/spec/version.html Says: ``` D_LP64 Pointers are 64 bits (command line switch -m64). (Do not confuse this with C's LP64 model) D_X32 Pointers are...
#### ibuclaw (@ibuclaw) commented on 2024-03-26T14:36:55Z ````markdown (In reply to Dennis from comment #1) > The usual check for this is `static if (size_t.sizeof == 8)`. `version(D_LP64)` would be a...
#### ibuclaw (@ibuclaw) commented on 2024-03-26T15:06:52Z ````markdown (In reply to Walter Bright from comment #7) > https://dlang.org/spec/version.html > > Says: > > ``` > D_LP64 Pointers are 64 bits (command...