diff options
-rwxr-xr-x | compilerplugins/clang/mergeclasses.py | 2 |
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 |