clang/README | 2 +- clang/find-unprefixed-members.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 7f8394089fa4903c68f4b2d628f3ab76ceacdd35 Author: Miklos Vajna <[email protected]> Date: Fri Sep 23 15:53:05 2016 +0200 clang: adapt find-unprefixed-members to latest clang-tools-extra clang-tools-extra r281710 changed the API of clang-rename at two places, adapt dev-tools code to cope with it. diff --git a/clang/README b/clang/README index 94e15ca..8d1fd32 100644 --- a/clang/README +++ b/clang/README @@ -97,7 +97,7 @@ and save the output to `$HOME/rename.yaml`. Rename them: ---- -make -sr -j8 COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=clang-rename-wrapper RENAME_ARGS="rename-all -input=$HOME/rename.yaml" +make -sr -j8 COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=clang-rename-wrapper RENAME_ARGS="-input=$HOME/rename.yaml" ---- (`clang-rename-wrapper` is the same as `rename-wrapper`, just `s/=rename/=clang-rename/`.) diff --git a/clang/find-unprefixed-members.cxx b/clang/find-unprefixed-members.cxx index 2f85ffe..11049dc 100644 --- a/clang/find-unprefixed-members.cxx +++ b/clang/find-unprefixed-members.cxx @@ -269,7 +269,7 @@ public: { if (m_rContext.getYaml()) { - std::cerr << "- OldName: " << rResult.m_aScope << "::" << rResult.m_aOldName << std::endl; + std::cerr << "- QualifiedName: " << rResult.m_aScope << "::" << rResult.m_aOldName << std::endl; std::cerr << " NewName: " << rResult.m_aNewName << std::endl; } else _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
