Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clang-rename doesn't work for namespaces #57194

Open
marcin-szmagara opened this issue Aug 17, 2022 · 0 comments
Open

clang-rename doesn't work for namespaces #57194

marcin-szmagara opened this issue Aug 17, 2022 · 0 comments

Comments

@marcin-szmagara
Copy link

The official documentation advertises clang-rename as able to rename namespaces. Here is a counterexample:

Running clang-rename --qualified-name=n1 --new-name=k1 minimal-namespace-test.cpp (source file contents below)

namespace n1
{
  int x;
}

namespace n1_alias = n1;

int main()
{
  using namespace n1;
  (void)x;
  (void)n1_alias::x;
}

produces following result:

namespace k1
{
  int x;
}

namespace n1_alias = n1;

int main()
{
  using namespace n1;
  (void)x;
  (void)n1_alias::x;
}

leaving both the using directive and namespace alias declaration untouched.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants