[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:
Ilya Biryukov 2018-12-13 17:23:48 +00:00
parent 91e69d8a92
commit 67dbeb6c6a
1 changed files with 2 additions and 1 deletions

View File

@ -4949,7 +4949,8 @@ static QualType getPreferredTypeOfBinaryRHS(Sema &S, Expr *LHS,
case tok::arrowstar:
return QualType();
default:
assert(false && "unhandled binary op");
// FIXME(ibiryukov): handle the missing op, re-add the assertion.
// assert(false && "unhandled binary op");
return QualType();
}
}