"Walter Bright" <[email protected]> wrote in message news:[email protected]... > Jérôme M. Berger wrote: >>> . all the symbols in that module, and the members of those symbols >>> (recursively) >> >> Including local variables for functions? > > That seems pointless, as they'll be inaccessible outside of the scope of > the function.
void foo()
{
int bar;
// big complex func here
}
User: Ok, IDE, Refactor->Rename->foo's "bar" to "baz"
