Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/lib/AST/ExprConstant.cpp | ||
---|---|---|
2831–2832 | Why not just use E->getRHS()->getSourceRange() here? It avoids an extra param |
clang/lib/AST/ExprConstant.cpp | ||
---|---|---|
2831–2832 | I thought there are cases where E is not a BinaryOperator, but that was wrong, thanks. |
clang/lib/AST/ExprConstant.cpp | ||
---|---|---|
2808–2811 | I think we should remove that parameter because it'd be pretty weird to pass in a binary operator and a different binary operator kind than the one used by the binary operator, right? |
I think we should remove that parameter because it'd be pretty weird to pass in a binary operator and a different binary operator kind than the one used by the binary operator, right?