On 8/8/22 6:17 AM, ag0aep6g wrote:
On Monday, 8 August 2022 at 07:14:33 UTC, vc wrote:
it seems change it to working is working

```d
 __gshared bool zeus;
 ```

but as I'm new in to D, i will like to hear thoughts even if it works for me

Never ever use `__gshared` ever. It's a glaring safety hole. Use `shared` instead.

If you are interfacing with C, you need __gshared. But yeah, you should use shared in this case.

-Steve

Reply via email to