r240211 - ASTContext.h: Fix utf8 chars in comments.
NAKAMURA Takumi
geek4civic at gmail.com
Fri Jun 19 21:20:23 PDT 2015
Author: chapuni
Date: Fri Jun 19 23:20:23 2015
New Revision: 240211
URL: http://llvm.org/viewvc/llvm-project?rev=240211&view=rev
Log:
ASTContext.h: Fix utf8 chars in comments.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=240211&r1=240210&r2=240211&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Fri Jun 19 23:20:23 2015
@@ -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);
}
More information about the cfe-commits
mailing list