From: Chris Lattner Date: Thu, 19 Feb 2009 04:44:58 +0000 (+0000) Subject: fix another typo gabor noticed X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4650c178e4ece69431706ff88eb2d3daf44a661;p=clang fix another typo gabor noticed git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65006 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 60e0edf206..5d1d935386 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -2364,7 +2364,7 @@ QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, } if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { - // Two identical pointers types are always compatible. + // Two identical pointer types are always compatible. return LHSTy; }