From: NAKAMURA Takumi Date: Sat, 20 Jun 2015 04:20:23 +0000 (+0000) Subject: ASTContext.h: Fix utf8 chars in comments. X-Git-Tag: llvmorg-3.7.0-rc1~1928 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f99a23e2338005a6e9bae8b0381bd960ed8138d5;p=platform%2Fupstream%2Fllvm.git ASTContext.h: Fix utf8 chars in comments. llvm-svn: 240211 --- diff --git a/clang/include/clang/AST/ASTContext.h b/clang/include/clang/AST/ASTContext.h index c06c5b4..da288c4f 100644 --- a/clang/include/clang/AST/ASTContext.h +++ b/clang/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); }