This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 4c80dcd [clang-rename] Fix handling of unchanged files new f68f0cd A clang tool for changing surrouding namespaces of class/func [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: CMakeLists.txt | 1 + {clang-query => change-namespace}/CMakeLists.txt | 11 +- change-namespace/ChangeNamespace.cpp | 509 +++++++++++++++++++++ change-namespace/ChangeNamespace.h | 144 ++++++ change-namespace/tool/CMakeLists.txt | 17 + change-namespace/tool/ClangChangeNamespace.cpp | 111 +++++ test/CMakeLists.txt | 1 + test/change-namespace/simple-move.cpp | 10 + unittests/CMakeLists.txt | 1 + unittests/change-namespace/CMakeLists.txt | 28 ++ .../change-namespace/ChangeNamespaceTests.cpp | 234 ++++++++++ 11 files changed, 1062 insertions(+), 5 deletions(-) copy {clang-query => change-namespace}/CMakeLists.txt (53%) create mode 100644 change-namespace/ChangeNamespace.cpp create mode 100644 change-namespace/ChangeNamespace.h create mode 100644 change-namespace/tool/CMakeLists.txt create mode 100644 change-namespace/tool/ClangChangeNamespace.cpp create mode 100644 test/change-namespace/simple-move.cpp create mode 100644 unittests/change-namespace/CMakeLists.txt create mode 100644 unittests/change-namespace/ChangeNamespaceTests.cpp