ASTContext.h: Fix utf8 chars in comments.

llvm-svn: 240211
This commit is contained in:
NAKAMURA Takumi 2015-06-20 04:20:23 +00:00
parent 6e70c370e5
commit f99a23e233
1 changed files with 4 additions and 4 deletions

View File

@ -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, its 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);
}