ASTContext.h: Fix utf8 chars in comments.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 20 Jun 2015 04:20:23 +0000 (04:20 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 20 Jun 2015 04:20:23 +0000 (04:20 +0000)
llvm-svn: 240211

clang/include/clang/AST/ASTContext.h

index c06c5b4..da288c4 100644 (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);
       }