1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[#746] Use inclusive language in codan (#794)

This commit is contained in:
thomas-z8 2024-05-22 04:02:12 +02:00 committed by GitHub
parent eeb4f03481
commit cbcad2944d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.cdt.codan.checkers;singleton:=true
Bundle-Version: 3.5.500.qualifier
Bundle-Version: 3.5.600.qualifier
Bundle-Activator: org.eclipse.cdt.codan.checkers.CodanCheckersActivator
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,

View file

@ -186,10 +186,10 @@ problem.name.MissReferenceProblem = Missing reference return value in assignment
problem.messagePattern.MissReferenceProblem = Assignment operators should return by reference
problem.description.MissReferenceProblem = This rule will flag assignment operators not returning by reference
checker.name.BlacklistChecker = Function or method in blacklist checker
problem.name.BlacklistProblem = Function or method is blacklisted
problem.messagePattern.BlacklistProblem = Function or method ''{0}'' is blacklisted
problem.description.BlacklistProblem = This rule will flag the use of functions or methods in blacklist
checker.name.BlacklistChecker = Function or method in denylist checker
problem.name.BlacklistProblem = The use of function or method is denied
problem.messagePattern.BlacklistProblem = The use of function or method ''{0}'' is denied
problem.description.BlacklistProblem = This rule will flag the use of functions or methods in denylist
checker.name.VariablesChecker = Variable checker
problem.name.StaticVariableInHeaderProblem = Static variable in header file