1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 317067: typo

This commit is contained in:
Alena Laskavaia 2010-06-19 17:37:54 +00:00
parent abc6a93d59
commit 7823edaff4

View file

@ -36,7 +36,7 @@ problem.description.NamingConventionFunction = Finds and reports functions name
problem.messagePattern.NamingConventionFunction = Bad function name "{0}" (pattern /{1}/)
problem.name.NamingConventionFunction = Name convention for function
checker.name.ReturnChecker = Return inconsistencies
problem.description.NoReturnValue = Return statment has no return value, if somebody would use return value from this function it would be random
problem.description.NoReturnValue = Return statement has no return value, if somebody would use return value from this function it would be random
problem.messagePattern.NoReturnValue = Return without value, in function returning non-void
problem.name.NoReturnValue = No return value
problem.description.UnusedReturnValue = Return statement has a value, but function is declared to return void. Did you mean to declare function with return value?