]> granicus.if.org Git - clang/commitdiff
[Sema] Replace smart quote with "'" in comment.
authorJustin Lebar <jlebar@google.com>
Thu, 6 Oct 2016 19:47:56 +0000 (19:47 +0000)
committerJustin Lebar <jlebar@google.com>
Thu, 6 Oct 2016 19:47:56 +0000 (19:47 +0000)
Looks like the smart quote was copy/pasted from the C++ standard.

The smart quote was not encoded as valid UTF-8 (?), even though vim was
detecting the file as UTF-8.  This broke the clang-format Python script,
which tried to read the file using the same encoding as vim detected.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@283487 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExpr.cpp

index bf2ee03a0d5462be464fa7ca78c060bef39df703..e47f35528f68b5c4731d64d9ca7384792cc2742a 100644 (file)
@@ -13687,7 +13687,7 @@ static bool captureInLambda(LambdaScopeInfo *LSI,
     // C++ [expr.prim.lambda]p5:
     //   The closure type for a lambda-expression has a public inline 
     //   function call operator [...]. This function call operator is 
-    //   declared const (9.3.1) if and only if the lambda-expression
+    //   declared const (9.3.1) if and only if the lambda-expression'
     //   parameter-declaration-clause is not followed by mutable.
     DeclRefType = CaptureType.getNonReferenceType();
     if (!LSI->Mutable && !CaptureType->isReferenceType())