summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-11-04 09:35:33 +0000
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-04 15:43:09 +0100
commit96256bd5936e129c5bb6d87395ef9006f3dc3956 (patch)
tree6786b357f7813642f195aafee742752f874e165d /compilerplugins/clang
parentnegative returns (diff)
downloadcore-96256bd5936e129c5bb6d87395ef9006f3dc3956.tar.gz
core-96256bd5936e129c5bb6d87395ef9006f3dc3956.zip
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@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang')
-rwxr-xr-xcompilerplugins/clang/mergeclasses.py2
1 files changed, 1 insertions, 1 deletions
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