forked from OSchip/llvm-project
ASTContext.h: Fix utf8 chars in comments.
llvm-svn: 240211
This commit is contained in:
parent
6e70c370e5
commit
f99a23e233
|
@ -1869,14 +1869,14 @@ public:
|
|||
return true;
|
||||
|
||||
if (IsParam) {
|
||||
// Ok for the superclass method parameter to be “nonnull” and the subclass
|
||||
// method parameter to be “nullable”
|
||||
// Ok for the superclass method parameter to be "nonnull" and the subclass
|
||||
// method parameter to be "nullable"
|
||||
return (*SuperTnullability == NullabilityKind::NonNull &&
|
||||
*SubTnullability == NullabilityKind::Nullable);
|
||||
}
|
||||
else {
|
||||
// For the return type, it’s okay for the superclass method to specify
|
||||
// “nullable” and the subclass method specify “nonnull”
|
||||
// For the return type, it's okay for the superclass method to specify
|
||||
// "nullable" and the subclass method specify "nonnull"
|
||||
return (*SuperTnullability == NullabilityKind::Nullable &&
|
||||
*SubTnullability == NullabilityKind::NonNull);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue