Re: "__gshared static" versus "static __gshared"

2011-02-23 Thread Trass3r
http://d.puremagic.com/issues/show_bug.cgi?id=4419

Re: "__gshared static" versus "static __gshared"

2011-01-29 Thread Lars T. Kyllingstad
On Sat, 29 Jan 2011 08:47:21 +, %u wrote: > Is this a bug? > >__gshared static i; > > makes i be thread-local, while > >static __gshared i; > > makes it be shared. If that's the case, then it is definitely a bug. The order of attributes shouldn't matter. -Lars

"__gshared static" versus "static __gshared"

2011-01-29 Thread %u
Is this a bug? __gshared static i; makes i be thread-local, while static __gshared i; makes it be shared.