[Libreoffice-commits] core.git: compilerplugins/clang
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Nov 4 14:43:54 UTC 2020
compilerplugins/clang/mergeclasses.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 96256bd5936e129c5bb6d87395ef9006f3dc3956
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Nov 4 09:35:33 2020 +0000
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Wed Nov 4 15:43:09 2020 +0100
copy_paste_error: "clazz" looks like a copy-paste error
Change-Id: Idc87fcca5da166a532792516277d8199c2558de5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105283
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/compilerplugins/clang/mergeclasses.py b/compilerplugins/clang/mergeclasses.py
index 662808640660..c859ef8daf0d 100755
--- a/compilerplugins/clang/mergeclasses.py
+++ b/compilerplugins/clang/mergeclasses.py
@@ -70,7 +70,7 @@ with open("compilerplugins/clang/mergeclasses.results", "wt") as f:
continue
otherclazz = next(iter(parentChildDict[clazz]))
if clazz == "svl::IUndoManager": print extractModuleName(clazz)
- if clazz == "svl::IUndoManager": print extractModuleName(otherclazz)
+ if otherclazz == "svl::IUndoManager": print extractModuleName(otherclazz)
# exclude combinations that span modules because we often use those to make cross-module dependencies more manageable.
if extractModuleName(clazz) != extractModuleName(otherclazz):
continue
More information about the Libreoffice-commits
mailing list