forked from OSchip/llvm-project
[CodeComplete] Temporarily disable failing assertion
Found the case in the clang codebase where the assertion fires. To avoid crashing assertion-enabled builds before I re-add the missing operation. Will restore the assertion alongside the upcoming fix. llvm-svn: 349061
This commit is contained in:
parent
91e69d8a92
commit
67dbeb6c6a
|
@ -4949,7 +4949,8 @@ static QualType getPreferredTypeOfBinaryRHS(Sema &S, Expr *LHS,
|
||||||
case tok::arrowstar:
|
case tok::arrowstar:
|
||||||
return QualType();
|
return QualType();
|
||||||
default:
|
default:
|
||||||
assert(false && "unhandled binary op");
|
// FIXME(ibiryukov): handle the missing op, re-add the assertion.
|
||||||
|
// assert(false && "unhandled binary op");
|
||||||
return QualType();
|
return QualType();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue