This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from ec36dad1b2 [OpenCL] Support pipe keyword in C++ mode new 680af1a8ca Reland r361148 with a fix to the buildbot failure. new 94dc093645 [LibTooling] Update Transformer to use RangeSelector instead [...]
The 2 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: include/clang/Tooling/Refactoring/Transformer.h | 92 +-- include/clang/Tooling/Syntax/Tokens.h | 302 ++++++++++ lib/Tooling/CMakeLists.txt | 1 + lib/Tooling/Refactoring/Transformer.cpp | 102 +--- lib/Tooling/Syntax/CMakeLists.txt | 10 + lib/Tooling/Syntax/Tokens.cpp | 509 ++++++++++++++++ unittests/Tooling/CMakeLists.txt | 3 + unittests/{Index => Tooling/Syntax}/CMakeLists.txt | 11 +- unittests/Tooling/Syntax/TokensTest.cpp | 654 +++++++++++++++++++++ unittests/Tooling/TransformerTest.cpp | 45 +- 10 files changed, 1541 insertions(+), 188 deletions(-) create mode 100644 include/clang/Tooling/Syntax/Tokens.h create mode 100644 lib/Tooling/Syntax/CMakeLists.txt create mode 100644 lib/Tooling/Syntax/Tokens.cpp copy unittests/{Index => Tooling/Syntax}/CMakeLists.txt (57%) create mode 100644 unittests/Tooling/Syntax/TokensTest.cpp