Explorar o código

Removed invalid character.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182189 91177308-0d34-0410-b5e6-96231b3b80d8
Serge Pavlov %!s(int64=12) %!d(string=hai) anos
pai
achega
fa047c5805
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lib/AST/ParentMap.cpp

+ 1 - 1
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
     // The right thing to do is to give the OpaqueValueExpr its syntactic
     // parent, then not reassign that when traversing the semantic expressions.
     // parent, then not reassign that when traversing the semantic expressions.
     OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(S);
     OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(S);
-    if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) {
+    if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) {
       M[OVE->getSourceExpr()] = S;
       M[OVE->getSourceExpr()] = S;
       BuildParentMap(M, OVE->getSourceExpr(), OV_Transparent);
       BuildParentMap(M, OVE->getSourceExpr(), OV_Transparent);
     }
     }