What does scope in
void foo(scope void* p) { }
mean?
(I'm not talking about scope(exit) or scope int x = 5;, but about scope as used inside a parameter list.)
|
|
|
There are 3 uses for
When used on a function parameter, the |
||||
|
Searching on the digital mars newsgroup, I found two semi-related post about scope in that context: here and here. From reading those two post, function parameter scope doesn't seem to do anything useful and it's there for backwards compatibility. It even sounds like later versions after D2 might have that qualifier removed altogether. |
|||
|
|