diff options
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/finalclasses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/finalclasses.py b/compilerplugins/clang/finalclasses.py index ea027f9a48b4..49a30b1e6511 100755 --- a/compilerplugins/clang/finalclasses.py +++ b/compilerplugins/clang/finalclasses.py @@ -40,7 +40,7 @@ for clazz in sorted(definitionSet - inheritFromSet): # ignore test and external code if ("/qa/" in file): continue if (file.startswith("workdir/")): continue - # We are only realling interested in classes that are shared between linkage units, where the compiler + # We are only really interested in classes that are shared between linkage units, where the compiler # is not able to figure out for itself that classes are final. if not(file.startswith("include/") or file.startswith("sw/inc/") or file.startswith("sc/inc/") or file.startswith("vcl/inc/")): continue # Exclude URE |