On 4/24/15 1:22 PM, "=?UTF-8?B?Ik3DoXJjaW8=?= Martins\" <marcio...@gmail.com>\"" wrote:Hi!I just stumbled across what seems like a misunderstanding on my sideabout these keywords. Can someone help clarify these for me?``` __gshared static int foo; __gshared int foo; ```What are the storage and semantic differences between those two, if any?These are the same, __gshared overrides static. -Steve
Thanks Steve!