From: Serge Pavlov Date: Sat, 18 May 2013 04:32:15 +0000 (+0000) Subject: Removed invalid character. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa047c580506041d1120023b10c6a3528c8016c6;p=clang Removed invalid character. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182189 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ParentMap.cpp b/lib/AST/ParentMap.cpp index ed5ac77db0..a9a459b602 100644 --- a/lib/AST/ParentMap.cpp +++ b/lib/AST/ParentMap.cpp @@ -74,7 +74,7 @@ static void BuildParentMap(MapTy& M, Stmt* S, // The right thing to do is to give the OpaqueValueExpr its syntactic // parent, then not reassign that when traversing the semantic expressions. OpaqueValueExpr *OVE = cast(S); - if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) { + if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) { M[OVE->getSourceExpr()] = S; BuildParentMap(M, OVE->getSourceExpr(), OV_Transparent); }