From: NAKAMURA Takumi Date: Sat, 20 Jun 2015 04:20:23 +0000 (+0000) Subject: ASTContext.h: Fix utf8 chars in comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5ca6865ef3a4c444f89350592fa5697274ffd2b;p=clang ASTContext.h: Fix utf8 chars in comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240211 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index c06c5b4caf..da288c4fe5 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -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); }